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