📄 examp16_18.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 + -