Visible to Intel only — GUID: GUID-99025431-2294-4B6D-BCDA-B4F80750EA94
Visible to Intel only — GUID: GUID-99025431-2294-4B6D-BCDA-B4F80750EA94
SBGRToYCoCg
Converts a 48-bit BGR image to the YCoCg color model.
Syntax
IppStatus ippiSBGRToYCoCg_<mod>(const Ipp16s* pBGR, int bgrStep, Ipp<dstDatatype>* pYCC[3], int yccStep, IppiSize roiSize);
Supported values for mod:
16s_C3P3R | 16s32s_C3P3R |
16s_C4P3R | 16s32s_C4P3R |
Include Files
ippcc.h
Domain Dependencies
Headers: ippcore.h, ippvm.h, ipps.h, ippi.h
Libraries: ippcore.lib, ippvm.lib, ipps.lib, ippi.lib
Parameters
pBGR |
Pointer to the source image ROI. |
bgrStep |
Distance in bytes between starts of consecutive lines in the source image. |
pYCC |
Array of pointers to the destination image ROI in each plane. |
yccStep |
Distance in bytes between starts of consecutive lines in the destination image. |
roiSize |
Size of the source and destination ROI in pixels. |
Description
This function operates with ROI (see Regions of Interest in Intel IPP).
This function converts the 48-bit BGR image pBGR to the YCoCg image pYCC according to the following formulas:
Y = ((R + 2*G + B)+ 2)/4
Co = ((R - B) + 1))/2
Cg = (( - R + 2*G - B) + 2)/4
Return Values
ippStsNoErr |
Indicates no error. Any other value indicates an error. |
ippStsNullPtrErr |
Indicates an error condition if one of the specified pointers is NULL. |