转化为lab色彩空间模式后,图像的显示情况和数组大小。
- %designed by superdont
- %lilizong@gmail.com
- %2008.11.5
- clc
- r=imread('E:\watermark\image\lena512.jpg');
- size(r)
- [lab]=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,[]);
本文通过将RGB图像转换为LAB色彩空间,展示了不同色彩空间下的图像显示效果,并比较了转换前后图像数组的大小。
4802

被折叠的 条评论
为什么被折叠?



