image is too big to fit in the screen (MATLAB)

hamid nazeri picture hamid nazeri · Apr 4, 2011 · Viewed 15k times · Source

I got an error in Matlab which is

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

and my source code for this part is this :

watermarked_image_uint8=uint8('watermarked_image');
%# write watermarked Image to file 
imwrite(watermarked_image_uint8,'watermarked_image','jpeg');
%# display watermarked image figure(1) 
imshow(watermarked_image), title('Watermarked_Image')

Can any one help me please to debug this warning?

Answer

Ghaul picture Ghaul · Apr 4, 2011

It's not an error, just a warning that the resolution of the image you are showing is larger than the resolution of your Matlab window, so Matlab has to reduce the size of the image before displaying it.

It has nothing to do with your code, and it won't effect your results, so you can safely ignore it.