I=imread(filename);
imshow(I,map);Error:未定义函数或变量 'map'。
Solution:
[I,map]=imread(filename);
imshow(I,map);
本文解决了一个在使用imshow显示图像时遇到的错误:未定义函数或变量'map'。通过正确读取图像及其颜色映射,确保了imshow函数能够正确显示图像。
I=imread(filename);
imshow(I,map);Error:未定义函数或变量 'map'。
Solution:
[I,map]=imread(filename);
imshow(I,map);
9104
576

被折叠的 条评论
为什么被折叠?
