首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 平面设计 > 图形图像 >

请问一个关于matlab中使用unit8报错了的有关问题

2012-04-09 
请教一个关于matlab中使用unit8报错了的问题我使用的是matlab7.0,敲入程序:Iimread( %5Bwallcoo.jpg )im

请教一个关于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);
打错字了

热点排行