MATLAB: How to find Hue and chroma values of images

chromahueimage

I have a image data set.I converted them in to L*A*B color space,How can I find hue and chroma values of this image dataset.

Best Answer

Hi SNEHAMOL K
You can try first converting the image color from L*a*b* color space to RGB color space using "lab2rgb" and then you can convert it from RGB color space to hue, saturation(chroma), and value (HSV) color space using "rgb2hsv".
Hope this helps.
Related Question