MATLAB: How is the scaling of y channel in YCbCr is different than scaling all three colour channel

computer visionComputer Vision Toolboxdigital image processingimage acquisitionImage Acquisition Toolboximage analysisimage processingImage Processing ToolboxStatistics and Machine Learning Toolbox

I have few hundred images in a dataset. I corrected illumination but they do have different illumination as they are taken in different lighting conditions.
Simple scaling is solving the problem, but I got confused what to choose. 1) Simply scaling all three different color channels by a constant c 2) Extract y channel in YCbCr converted Image and scale y channel by constant c.
In principle how they are different. I see minor difference in red channel histograms after scalling both the ways.
the condition of scaling is they must not affect the hue of any two subsequent images in the dataset.

Best Answer

In principal, all these color spaces are affine transformations of each other, that is YCbCr = A*(RGB) + b. Hence if you multiply RGB by a constant C, all the three channels in YCbCr are scaled proportionately.
YCbCr is a color space wherein Y channel contains the luminance (intensity) component and CbCr the color information. As humans are more sensitive to luminance changes, this color space is mostly used when you would want to do sub sampling in color channels, preserving the intensity information.
That being said, rescaling Y channel and scaling each R,G,B channel should produce fairly similar results as essentially both are adjusting the total intensity of the image.
The wikipedia link on YCbCr would be helpful in understanding more about this color space and its applications.