MATLAB: Black image after imread

imread image png

hello using this code:
I1 = imread('E:\Dropbox\Andrea VMS\Esame_di_Stato\Programmi\Spur_Gear\Spur11.PNG');
imshow(I1);
Y_j=input('Insert the geometrical coefficient of flexural resistance: ');
close
appears a black window. using other images i have no problem. this is an image i scanned from a book

Best Answer

Try
imshow(I1, []);
message = sprintf('Max Value = %f\nMin Value = %f\n', max(I1(:)), min(I1(:)))
uiwait(helpdlg(message));
Also, check the values of I1 in the variable editor to see what they are.