码迷,mamicode.com
首页 > 其他好文 > 详细

matlab怎么同时显示imshow 两幅图片

时间:2015-06-19 18:20:33      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

matlab怎么同时显示imshow 两幅图片

matlab怎么同时显示imshow 两幅图片

方法一:subplot()函数

subplot(2,1,1);

subplot(2,1,2);

分上下或者左右显示两张图片...

例如:

原始图片分两个窗口显示:

hehe=uint8(hehe);

figure(1)

imshow(he), title(‘原始图像‘);%显示原始图像

figure(2)

imshow(hehe), title(‘SLIC分割k=400,m=40‘);%显示超像素分割图像

两张图片在一个窗口中显示:

hehe=uint8(hehe);

figure(1)

subplot(2,1,1);imshow(he),title(‘原始图像‘); %显示原始图像

%figure(2)

subplot(2,1,2);imshow(hehe),title(‘SLIC分割k=400,m=40‘); %显示超像素分割图像

技术分享

 

方法二:montage()函数

使用montage()函数就可,不过要求两幅图像大小必须一样的.cat是个好办法,把2个数据连接在一起。具体使用请help montage.图示中的例子的代码如下:

gray01=rgb2gray(imread(‘img01.jpg‘));
gray02=rgb2gray(imread(‘img12.jpg‘));
pic=cat(2,gray01,gray02);
figure;

montage(pic)

水平排列:

pic=cat(2,gray01,gray02);

figure, imshow(pic);

垂直排列:

pic=cat(1,gray01,gray02);

figure, imshow(pic);

 

街上上述例子程序如下:

imshow(he), title(‘原始图像‘); %显示原始图像

imshow(hehe), title(‘SLIC分割k=400,m=40‘);

pic=cat(2,he,hehe);

figure, imshow(pic);

水平排列:

技术分享

 

垂直排列:

 

技术分享

 

更多,请关注:http://blog.csdn.net/tiandijun/,欢迎交流!

matlab怎么同时显示imshow 两幅图片

标签:

原文地址:http://www.cnblogs.com/yymn/p/4589342.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!