Renamimg the figure

2 次查看(过去 30 天)
FIR
FIR 2011-10-8
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

采纳的回答

Image Analyst
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.
  1 个评论
FIR
FIR 2011-10-8
no sir am performimg 4 operations ,like low pass ,high pass etc on that 15 images and making subplot for low pass ,etc

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by