How is the scaling of y channel in YCbCr is different than scaling all three colour channel?
3 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
采纳的回答
Kushagr Gupta
2017-3-16
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.
2 个评论
Kushagr Gupta
2017-3-16
In that case, scaling just the Y channel is a better approach. Scaling RGB will modify the color. Taking a simple example:
P(1,1,:) = [0.5 0.5 0]; % Greenish Color
Q(1,1,:) = P(1,1,:) *2; % [1 1 0] Yellow Color
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Computer Vision with Simulink 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!