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?
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.