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

3 ビュー (過去 30 日間)
senthil vadivu
senthil vadivu 2016 年 11 月 24 日
回答済み: Image Analyst 2016 年 11 月 24 日
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