?? f11_9.m
字號:
%調入第一幅模糊圖像
load cathe_1;
X1=X;
%調入第二幅模糊圖像
load cathe_2;
X2=X;
%基于小波分解的圖像融合
XFUS=wfusimg(X1,X2,'sym4',5,'max','max');
%顯示
colormap(map);
subplot(2,2,1);
image(X1);
axis square;
title(' Catherine 1');
subplot(2,2,2);
image(X2);
axis square;
title(' Catherine 2');
subplot(2,2,3);
image(XFUS);
axis square;
title('Synthesized image');
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -