|
"Flaut Hübbers" wrote in message <kch5ak$c7h$1@newscl01ah.mathworks.com>...
> hi there,
>
> from my experience matlab got problems reading images with blanks or special signs in the filename. Rename your imagefile and try it again.
>
> Maybe you want something like this...
>
> I = imread('33mm_065z_0_B.jpg', 'jpg');
> imshow(I);
> imwrite(I, 'savename.jpg', 'jpg');
>
> cu
Thank you very much for your response but unfortunately this didn't work. I tried renaming an image as 'test' and called the following but it still gives the same error.
>> I = imread('test.jpg');
>> imshow(I);
??? Undefined function or method 'imshow' for input arguments of type
'uint8'.
|