MATLAB imshowpair();

时间:2016-05-09 05:10:21

标签: matlab image-processing

我使用imshowpair来比较两个图像,它显示得很好。 但是我想保存imshowpair显示的图像,但每次我将它分配给值(h)并且我用来显示图像时,会发生错误。我希望将它作为RGB图像来操纵输出的图像。

h = imshowpair(B, C);
figure;

imshow(h, []);

谢谢!

1 个答案:

答案 0 :(得分:0)

您可以使用:

figure,imshowpair(B,C)
frame = getframe();
image = frame2im(frame);
imwrite(image,'location.png')