📄 简单融合2.m
字号:
A=imread('office_A.tif');
subplot(231);imshow('office_A.tif')
title('原始图象A');
axis square
B=imread('office_B.tif');
subplot(232);imshow('office_B.tif')
title('原始图象B');
axis square
X=0.5*A+0.5*B;
subplot(233);imshow(X);
title('加权平均');
axis square
Y=max(A,B);
subplot(234);imshow(Y);
title('MAX');
axis square
Z=min(A,B);
subplot(235);imshow(Z);
title('MIN');
axis square
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -