码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2014-09-07 18:30:05      阅读:229      评论:0      收藏:0      [点我收藏+]

标签: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);

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

标签:color   for   sp   代码   c   ad   ef   res   rgb   

原文地址:http://www.cnblogs.com/anjing9580/p/3960568.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!