请教一个关于matlab中使用unit8报错了的问题
我使用的是matlab7.0,敲入程序:
I=imread( '%5Bwallcoo.jpg ');
imshow(I);
I=double(I);
I=256-1-I;
I=unit8(I);
figure;
imshow(I);
后,报错
??? Undefined command/function 'unit8 '.
Error in ==> test at 5
I=unit8(I);
这是怎么回事?我是初学者,请帮帮忙
[解决办法]
I=unit8(I);
改成
I=uint8(I);
打错字了