在 MATLAB 中使用 imshow 方法显示图像标题
Posted
技术标签:
【中文标题】在 MATLAB 中使用 imshow 方法显示图像标题【英文标题】:Showing image title with imshow method in MATLAB 【发布时间】:2014-09-10 14:34:34 【问题描述】:如何在 MATLAB 图形中显示图像标题?我有以下代码:
I=imread('./../images/pap.png');
subplot(1,2,1);
imshow(I); % here I want to show labels
【问题讨论】:
【参考方案1】:使用title
命令。它的工作原理很像plot
。 imshow
生成一个新图形,因此您可以在此处应用对任何图形的命令。通过使用title
,您将为您的图片命名,并显示在图片的顶部。
这样:
I=imread('./../images/pap.png');
subplot(1,2,1);
imshow(I);
title('Labels'); % Place title here
【讨论】:
以上是关于在 MATLAB 中使用 imshow 方法显示图像标题的主要内容,如果未能解决你的问题,请参考以下文章