Converts 24-bit per pixel RGB image to 16-bit per pixel YCrCb image
Case 1: Operation on pixel-order data
IppStatus ippiRGBToYCrCb422_8u_C3C2R(const Ipp8u* pSrc, int srcStep, Ipp8u* pDst, int dstStep, IppiSize roiSize);
Case 2: Conversion from planar to pixel-order data
IppStatus ippiRGBToYCrCb422_8u_P3C2R(const Ipp8u* const pSrc[3], int srcStep, Ipp8u* pDst, int dstStep, IppiSize roiSize);
pSrc |
Pointer to the source image ROI for pixel-order image. An array of pointers to ROI in each separate source color planes for planar images. |
srcStep |
Distance in bytes between starts of consecutive lines in the source image. |
pDst |
Pointer to the destination image ROI. |
dstStep |
Distance in bytes between starts of consecutive lines in the destination image. |
roiSize |
Size of the source and destination ROI in pixels. |
The function ippiRGBToYCrCb422 is declared in the ippcc.h file. It operates with ROI (see Regions of Interest in Intel IPP). This function converts the gamma-corrected R'G'B' image pSrc to the Y'Cb'Cr' image pDst according to the same formulas as the function ippiRGBToYCbCrippiRGBToYCbCr does. The difference is that ippiRGBToYCrCb422 uses 4:2:2 sampling format for the converted image (see Table “Pixel-Order Image Formats” and Table “Planar Image Formats” for more details).
The converted buffer has the reduced bit depth of 16 bits per pixel, whereas the source buffer has 24 bit depth.
ippStsNoErr |
Indicates no error. Any other value indicates an error or a warning. |
ippStsNullPtrErr |
Indicates an error condition if pSrc or pDst is NULL. |
ippStsSizeErr |
Indicates an error condition if roiSize has a field with a zero or negative value. |
Copyright © 2000 - 2011, Intel Corporation. All rights reserved.