>> clear all
>> I=imread('cameraman.tif');
>> figure(1);
>> imshow(I);%256个灰度级显示
>> title('imshow(I)');
>> figure(2);
>> imshow(I,2);%2个灰度级显示
>> title('imshow(I,2)');
>> figure(3);
>> imshow(I,[150,200]);%显示值域为[150,200]
>> title('imshow(I,[150,200])');
>> figure(4);
>> imshow(I,[]);%显示值域为[min(I),max(I)]
>> title('imshow(I,[])');
https://blog.sciencenet.cn/blog-287000-506528.html
上一篇:
imagesc函数显示图像和image函数显示图像的比较下一篇:
索引图像的显示