请问如何在matlab里用subplot将第二张图片变成第一张的样子? 5
展开全部
举个例子:
程序一:
clc,clear;
I=imread('Penguins.jpg'); %读入图片
I1=rot90(I,1);%逆时针转90度
I2=rot90(I,2);%逆时针转180度
I3=rot90(I,3);%逆时针转270度
figure
subplot(2,2,1)
imshow(I);
title('原图')
p2=subplot(2,2,2);
%set(p2,'position',[0.5 0.15 .5 0.75])
imshow(I1)
title('逆时针转90度')
subplot(2,2,3)
imshow(I2);
title('逆时针转180度')
效果是:
%set(p2,'position',[0.5 0.15 .5 0.75]) 把这个注释取消
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询