MATLAB: Issue related to imshow command

image processingImage Processing Toolbox

I am using 'imshow' command in my code. Till yesterday my code was running properly, but from today i am getting error as shown below * * *
"Attempt to call constructor image with incorrect letter case.
Error in basicImageDisplay (line 24)
hh = image(cdata, ...
Error in imshow (line 266)
hh = basicImageDisplay(fig_handle,ax_handle,...
Error in Untitled2 (line 19)
imshow(thisFrame);* *
* "

Best Answer

Do this on the command line
which -all image
and tell us what it says. You should see this:
>> which -all image
built-in (C:\Program Files\MATLAB\R2014b\toolbox\matlab\specgraph\image)
Related Question