rgb2ycbcr - Convert a RGB image to the equivalent YCbCr image.
rgb2ycbcr convert a RGB image to the equivalent HSV image using:
Supported classes: INT8, UINT8, INT16, UINT16, INT32, DOUBLE. If RGB is not a double image, it will be converted to double image first in the procedure.
RGB = imread('lena.png');
YCC = rgb2ycbcr(RGB);
RGB = ycbcr2rgb(YCC);
imshow(RGB);
rgb2gray, mat2gray, rgb2hsv, hsv2rgb, ycbcr2rgb, rgb2ntsc, ntsc2rgb,