首页 > 代码库 > 几个简单的图像转换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代码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。