Matlab 将RGB 图像转换成YCrCb图像

>> im = imread('trees.jpg');
>> imshow(im)
>> ycrcb_trees = rgb2ycbcr(im);
>> figure(2)
>> imshow(ycrcb_trees)

原文地址:https://www.cnblogs.com/L-G-L/p/10655939.html