How do I convert rgb to Lab and display only a* layer with matlab?

1 view (last 30 days)
I want to get a* layer to continue processing.

Accepted Answer

Jarrod Dowdall
Jarrod Dowdall on 16 Aug 2019
Perhaps the easiest way would be to use the function rgb2lab() in matlab. Note that you will need the Image Processing Toolbox.
Lab = rgb2lab(rgb);
a = Lab(:,:,2);
I hope that helps you get started.

More Answers (0)

Categories

Find more on Image Processing and Computer Vision in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!