Renamimg the figure
2 次查看(过去 30 天)
显示 更早的评论
I have 15 images ,and i have used subplot as shown,where m is 15 A is the output image , figure(1),subplot(4,4,m),imshow(A);
figure(2),subplot(4,4,m),imshow(out6)
and so on
I want to rename that figure1 as ORIGNAL IMAGE AND figure2 AS low pass filter images,can u su7ggest how to do
0 个评论
采纳的回答
Image Analyst
2011-10-8
Either use title() after you call imshow to put a caption above the image, or do this to change the name shown in the title bar of the entire figure window, whichever you meant
set(gcf,'name','Demo by ImageAnalyst','numbertitle','off')
By the way, are you creating 15 separate figures but placing only one small image on each, near the lower right corner, with the subplot() function? Because that's what it appears like and I don't know why you'd do that.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!