From: mikisheadmaster on
Hello to all,
I have made a loop to show multiple images using the known way with
subplot and imshow.

On the other hand, I see that the subplot resize the images to a lower
resolution which I cannot tell.And these appear too small.

Is there any way to fix this?

Thanks in advance.
From: ImageAnalyst on
Fix how? subplot basically puts up a bunch of thumbnail sized
images. If you want bigger images, don't use subplot. If the image
size is fine but you want unit magnification rather than "fit"
magnification, put sliders up there to set the zoom level.
From: mikisheadmaster on
No the images are small.I cannot even see them.What can I use?

Is there any other function?
How to do that with the sliders?

On 10 ÌÜúïò, 21:48, ImageAnalyst <imageanal...(a)mailinator.com> wrote:
> Fix how?  subplot basically puts up a bunch of thumbnail sized
> images.  If you want bigger images, don't use subplot.  If the image
> size is fine but you want unit magnification rather than "fit"
> magnification, put sliders up there to set the zoom level.

From: Oliver Woodford on
mikisheadmaster <strubulis(a)gmail.com> wrote in message <84d3efac-983b-4e3d-98c4-1950f5893e26(a)n15g2000yqf.googlegroups.com>...
> No the images are small.I cannot even see them.What can I use?
>
> Is there any other function?
> How to do that with the sliders?
>
> On 10 &#924;&#940;&#970;&#959;&#962;, 21:48, ImageAnalyst <imageanal...(a)mailinator.com> wrote:
> > Fix how?  subplot basically puts up a bunch of thumbnail sized
> > images.  If you want bigger images, don't use subplot.  If the image
> > size is fine but you want unit magnification rather than "fit"
> > magnification, put sliders up there to set the zoom level.

Take a look at imdisp on the FEX.
From: ImageAnalyst on
Exactly how many suplots are there on your figure? It's not good to
use it for more than about a dozen or so axes because the plots get
too small. Did you also maximize the figure, for example with this
code:

set(gcf, 'Position', get(0,'Screensize')); % Enlarge figure to full
screen.