0
votes

How to solve this issue

Warning: Image is too big to fit on screen; displaying at 50%

In imuitools\private\initSize at 73

In imshow at 262

In Lab1 at 10

3
double-posting your questions is not a good practice (stackoverflow.com/q/8585253/501663) - Itamar Katz
sorry for that!! I thought maybe this issue is cause by the image is too big! - Kim

3 Answers

3
votes

You can reduce the size of your image:

im=imresize(im,0.5);
2
votes

There is more than one option, you should provide more details for a better answer.

One option is to use a scroll-bar (see http://www.mathworks.com/help/toolbox/images/ref/imscrollpanel.html)

hFig = figure('Toolbar','none', 'Menubar','none');
hIm = imshow(someImageData);
hSP = imscrollpanel(hFig,hIm);
0
votes

you can specify the initial magnification.

imshow(I,'InitialMagnification',50);