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
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
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);