【发布时间】:2011-04-28 19:17:38
【问题描述】:
我有:
img = imread('pic.jpg','jpg');
r = img(:,:,1);
g = img(:,:,2);
b = img(:,:,3);
figure, imshow(r);
figure, imshow(g);
figure, imshow(b);
如何在每张图片上设置标题?
【问题讨论】:
我有:
img = imread('pic.jpg','jpg');
r = img(:,:,1);
g = img(:,:,2);
b = img(:,:,3);
figure, imshow(r);
figure, imshow(g);
figure, imshow(b);
如何在每张图片上设置标题?
【问题讨论】:
您想更改图形窗口的Name-属性。
img = imread('pic.jpg','jpg');
r = img(:,:,1);
g = img(:,:,2);
b = img(:,:,3);
figure('Name','this is the red channel'), imshow(r);
figure('Name','this is the green channel','NumberTitle','off'), imshow(g);
title(gca,'you can also place a title like this')
fh = figure; imshow(b);
set(fh,'Name','this is the blue channel')
另外,如果你调用imshow(g,[]),它会自动缩放图像到最小/最大。
【讨论】:
gca 不应该用引号引起来。顺便说一句:如果有帮助,请不要忘记接受答案。