⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 简单融合1.m

📁 简单的图象融合
💻 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 + -