首页 > 代码库 > 几个简单的图像转换MATLAB代码

几个简单的图像转换MATLAB代码

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);

几个简单的图像转换MATLAB代码