?? 簡單融合1.m
字號:
[A,map1]=imread('bellleft.bmp');
subplot(231);image(A);colormap(map1);
title('原始圖象A');
axis square
[B,map2]=imread('bellright.bmp');
subplot(232);image(B);colormap(map2);
title('原始圖象B');
axis square
X=0.5*A+0.5*B;
subplot(233);image(X);
title('加權平均');
axis square
Y=max(A,B);
subplot(234);image(Y);
title('MAX');
axis square
Z=min(A,B);
subplot(235);image(Z);
title('MIN');
axis square
[I,map3]=imread('bell.bmp');
subplot(236);image(I);colormap(map3);
title('對比圖');
axis square
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -