`
yingyingol
  • 浏览: 745543 次
文章分类
社区版块
存档分类
最新评论

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

 
阅读更多

转化为lab色彩空间模式后,图像的显示情况和数组大小。

  1. %designed by superdont
  2. %lilizong@gmail.com
  3. %2008.11.5
  4. clc
  5. r=imread('E:/watermark/image/lena512.jpg');
  6. size(r)
  7. [lab]=rgb2lab(r);
  8. size(l)
  9. size(a)
  10. size(b)
  11. %figure(1),imshow(l);
  12. %figure(2),imshow(a);
  13. %figure(3),imshow(b);
  14. %figure(4),imshow(r);
  15. figure(1),subplot(2,2,1),imshow(l,[]);
  16. subplot(2,2,2),imshow(a,[]);
  17. subplot(2,2,3),imshow(b,[]);
  18. subplot(2,2,4),imshow(r,[]);

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics