>> I=imread('cameraman.tif');
>> [X,map]=gray2ind(I);
>> subplot(1,2,1);
>> imshow(I);
>> title('原始图像');
>> subplot(1,2,2);
>> imshow(X,map);
>> title('结果图像---索引图像');
https://blog.sciencenet.cn/blog-287000-506638.html
上一篇:
图像类型转换---dither函数(将灰度图像转换为二值图像)下一篇:
图像类型转换---grayslice函数(将灰度图像转换为索引图像)