How to create histograms for L a b channels separately in CIELAB color space.

조회 수: 3 (최근 30일)
How to create histograms for L a b channels separately in CIELAB color space.

채택된 답변

Image Analyst
Image Analyst 2016년 11월 24일
Try this:
labImage = rgb2lab(rgbImage);
LImage = labImage(:, :, 1);
AImage = labImage(:, :, 2);
BImage = labImage(:, :, 3);

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by