From: Niranjan L on
I=imread('D:\Wallpapers\Sivaji the boss\280427695_e24cd341aa_m.jpg');
imshow(I);
when i execute d program i get this error message.


??? Attempt to call constructor image with incorrect letter case.


Error in ==> basicImageDisplay at 9
hh = image(xdata,ydata,cdata, ...

Error in ==> imshow at 223
hh = basicImageDisplay(fig_handle,ax_handle,...




how to solve it?
From: ImageAnalyst on
To solve it, use standard debugging methodology, such as using the
debugger. Set a breakpoint and see what "I" really is. Also you do
standard things such as trying to open that image in another program
such as Photoshop. You could also post your image to http://drop.io
so others can easily see it, download it, and try to display it in
their version of MATLAB. Calling The Mathworks for help is yet
another option (as long as you don't have the student version).

As far as MATLAB goes, there is a whole section in the help on useful
debugging techniques.