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

3 visualizaciones (últimos 30 días)
How to create histograms for L a b channels separately in CIELAB color space.

Respuesta aceptada

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

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by