about conversion of color spaces
1 次查看(过去 30 天)
显示 更早的评论
How to convert RGB color space into YUV color space?
0 个评论
采纳的回答
Chandra Kurniawan
2012-1-25
rgb2ycbcr
MATLAB YCbCr color space is often referred to as YUV.
3 个评论
Chandra Kurniawan
2012-1-25
Hi,
I see the problem
from this link : http://en.wikipedia.org/wiki/YUV
we can also implement the formula by :
RGB = imread('football.jpg');
R = RGB(:,:,1);
G = RGB(:,:,2);
B = RGB(:,:,3);
Y = 0.299 * R + 0.587 * G + 0.114 * B;
U = -0.14713 * R - 0.28886 * G + 0.436 * B;
V = 0.615 * R - 0.51499 * G - 0.10001 * B;
YUV = cat(3,Y,U,V);
imshow(YUV);
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Convert Image Type 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!