当前位置:   article > 正文

使用直方图均衡方法对图像进行白平衡_白平衡直方图

白平衡直方图
  1. I = imread('D:\Desktop\imdemos\colorchecker.jpg');
  2. I_r = I(:,:,1);
  3. I_g = I(:,:,2);
  4. I_b = I(:,:,3);
  5. H_r = histeq(I_r);
  6. H_g = histeq(I_g);
  7. H_b = histeq(I_b);
  8. H(:,:,1)=H_r(:,:,1);
  9. H(:,:,2)=H_g(:,:,1);
  10. H(:,:,3)=H_b(:,:,1);
  11. figure;
  12. subplot(121); imshow(I); title('原始灰度图像');
  13. subplot(122); imshow(H); title('直方图均衡化图像');
  14. figure;
  15. subplot(221); imhist(I_r);
  16. subplot(222); imhist(I_g);
  17. subplot(223); imhist(I_b);
  18. figure;
  19. subplot(221); imhist(H_r);
  20. subplot(222); imhist(H_g);

 直方图均衡前 RGB直方图

  直方图均衡后 RGB直方图

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/519749?site
推荐阅读
相关标签
  

闽ICP备14008679号