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

7 Ansichten (letzte 30 Tage)
How to create histograms for L a b channels separately in CIELAB color space.

Akzeptierte Antwort

Image Analyst
Image Analyst am 24 Nov. 2016
Try this:
labImage = rgb2lab(rgbImage);
LImage = labImage(:, :, 1);
AImage = labImage(:, :, 2);
BImage = labImage(:, :, 3);

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by