MATLAB: I have an error in imshow function

image processingImage Processing Toolboximshow

Hi, I have a problem when i use imshow in matlab . i excuted imread in struction correctly but when i type imshow it will give me this error: >> imshow(a) 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,…

Best Answer

imshow() uses image, and you overrode the built-in image function with your own image function defined in your own custom m-file.
Related Question