我想在matlab中读取图像并将其转换为索引图像
这是我的代码:
[I map] = imread('image.tif');
I = rgb2ind(I, map);
figure(1);
imagesc(I);axis('equal');
当我刚读完图像时,它看起来很好(但它是一个rgb图像)。然后我将其转换为索引图像,我有以下图片:
这段代码出了什么问题?
答案 0 :(得分:2)
您的语法略有偏差。这应该有效:
[I, map] = imread('autumn.tif');
[I, map] = rgb2ind(I, map);
figure(1);
image(I);
colormap(map);
axis('equal');
请参阅rgb2ind的文档。
答案 1 :(得分:1)
您的输出是滥用matlab函数的结果。
%read a non-indexed image. I is your RGB image, map is empty
[I,map] = imread('board.tif');
%rgb2ind has two output arguments, get both, otherwise your unchanged code
[I2,map2] = rgb2ind(I, map);
%Now I2 is a indexed image and map2 the corresponding map
现在您在不应用色彩映射的情况下显示索引图像I2:
imagesc(I2)
您的图片包含值1:n并且色彩映射jet
已激活,因此您可以获得彩虹。
显示正确图像的可能性是使用地图:
imagesc(I2)
colormap(map2)
或显示I,即原始RGB图像
imagesc(I)