在MATLAB中使用imshow方法显示图像标题

时间:2014-07-19 15:56:54

标签: image matlab plot title imshow

如何在MATLAB数据中显示图像标题?我在下面有以下代码:

I=imread('./../images/pap.png');
subplot(1,2,1);
imshow(I); % here I want to show labels

1 个答案:

答案 0 :(得分:14)

使用title命令。它的工作方式与plot非常相似。 imshow会生成一个新数字,因此您可以在此处应用任何数字的命令。使用title,您将为图片添加标题,并显示在图片的顶部。

因此:

I=imread('./../images/pap.png');
subplot(1,2,1);
imshow(I);
title('Labels'); % Place title here