标签:color for sp 代码 c ad ef res rgb
1、将索引图像为RGB图像
[X,map]=imread(‘spine.tif‘);
figure;
subplot(121);imshow(X,hot(64));
rgb=ind2rgb(X,map);
subplot(122);imshow(rgb);
2、将矩阵转换为灰度图像
>> I=[1 2 3;4 5 6;0 1 0];
>> X=mat2gray(I);
>> figure;
>> imshow(X)
3、RGB图像转换为索引图像
>> r=imread(‘football.jpg‘);
>> [x1,map]=rgb2ind(r,64);
>> [x2,map]=rgb2ind(r,0.2);
>> map3=colorcube(128);
>> x3=rgb2ind(r,map3);
>> figure;
>> subplot(141),imshow(r);
>> subplot(142),imshow(x1,map);
>> subplot(143),imshow(x2,map);
>> subplot(144),imshow(x3);
4、索引图像转换为灰度图像
>> [X,map]=imread(‘forest.tif‘);
>> I=ind2gray(X,map);
>> figure;imshow(X,map);
>> figure;imshow(I);
标签:color for sp 代码 c ad ef res rgb
原文地址:http://www.cnblogs.com/anjing9580/p/3960568.html