您的位置:首页 > 其它

图像在rgb和lab空间之间的转换

2008-11-05 09:19 597 查看
转化为lab色彩空间模式后,图像的显示情况和数组大小。

%designed by superdont

%lilizong@gmail.com
%2008.11.5

clc
r=imread('E:/watermark/image/lena512.jpg');
size(r)
[l a b]=rgb2lab(r);
size(l)
size(a)
size(b)
% figure(1),imshow(l);
% figure(2),imshow(a);
% figure(3),imshow(b);
% figure(4),imshow(r);
figure(1),subplot(2,2,1),imshow(l,[]);
subplot(2,2,2),imshow(a,[]);
subplot(2,2,3),imshow(b,[]);
subplot(2,2,4),imshow(r,[]);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: