NVIDIA 2D Image And Signal Performance Primitives (NPP)
Version 11.2.1.*
|
YCbCr to RGB batch color conversion with a single Region-of-Interest (ROI) for all pairs of input/output images provided in batches. More...
Functions | |
NppStatus | nppiYCbCrToRGBBatch_8u_C3R_Ctx (const NppiImageDescriptor *pSrcBatchList, NppiImageDescriptor *pDstBatchList, int nBatchSize, NppiSize oSizeROI, NppStreamContext nppStreamCtx) |
3 channel 8-bit unsigned packed YCbCr to 3 channel 8-bit unsigned packed RGB batch color conversion for a single ROI. More... |
|
NppStatus | nppiYCbCrToRGBBatch_8u_C3R (const NppiImageDescriptor *pSrcBatchList, NppiImageDescriptor *pDstBatchList, int nBatchSize, NppiSize oSizeROI) |
NppStatus | nppiYCbCrToRGBBatch_8u_P3C3R_Ctx (const NppiImageDescriptor *const pSrcBatchList[3], NppiImageDescriptor *pDstBatchList, int nBatchSize, NppiSize oSizeROI, NppStreamContext nppStreamCtx) |
3 channel 8-bit unsigned planar YCbCr to 3 channel 8-bit unsigned packed RGB batch color conversion for a single ROI. More... |
|
NppStatus | nppiYCbCrToRGBBatch_8u_P3C3R (const NppiImageDescriptor *const pSrcBatchList[3], NppiImageDescriptor *pDstBatchList, int nBatchSize, NppiSize oSizeROI) |
YCbCr to RGB batch color conversion with a single Region-of-Interest (ROI) for all pairs of input/output images provided in batches.
NPP converts YCbCr to gamma corrected RGB the same way as in YCbCrToRGB.
NppStatus nppiYCbCrToRGBBatch_8u_C3R | ( | const NppiImageDescriptor * | pSrcBatchList, |
NppiImageDescriptor * | pDstBatchList, | ||
int | nBatchSize, | ||
NppiSize | oSizeROI | ||
) |
NppStatus nppiYCbCrToRGBBatch_8u_C3R_Ctx | ( | const NppiImageDescriptor * | pSrcBatchList, |
NppiImageDescriptor * | pDstBatchList, | ||
int | nBatchSize, | ||
NppiSize | oSizeROI, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 8-bit unsigned packed YCbCr to 3 channel 8-bit unsigned packed RGB batch color conversion for a single ROI.
Provided oSizeROI will be used for all pairs of input and output images passed in pSrcBatchList and pSrcBatchList arguments. API user must ensure that provided ROI (oSizeROI) does not go beyond the borders of any of provided images.
pSrcBatchList | Source-Batch-Images Pointer. |
pDstBatchList | Destination-Batch-Images Pointer. |
nBatchSize | Number of NppiImageDescriptor structures processed in this call (must be > 1). |
oSizeROI | Region-of-Interest (ROI). |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiYCbCrToRGBBatch_8u_P3C3R | ( | const NppiImageDescriptor *const | pSrcBatchList[3], |
NppiImageDescriptor * | pDstBatchList, | ||
int | nBatchSize, | ||
NppiSize | oSizeROI | ||
) |
NppStatus nppiYCbCrToRGBBatch_8u_P3C3R_Ctx | ( | const NppiImageDescriptor *const | pSrcBatchList[3], |
NppiImageDescriptor * | pDstBatchList, | ||
int | nBatchSize, | ||
NppiSize | oSizeROI, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 8-bit unsigned planar YCbCr to 3 channel 8-bit unsigned packed RGB batch color conversion for a single ROI.
Provided oSizeROI will be used for all pairs of input planes making input images and output packed images passed in pSrcBatchList and pSrcBatchList arguments. API user must ensure that provided ROI (oSizeROI) does not go beyond the borders of any of provided images.
pSrcBatchList | An array where each element is a batch of images representing one of planes in planar images, Source-Batch-Images Pointer. The first element of array (pSrcBatchList[0]) represents a batch of Y planes. The second element of array (pSrcBatchList[1]) represents a batch of Cb planes. The third element of array (pSrcBatchList[2]) represents a batch of Cr planes. |
pDstBatchList | Destination-Batch-Images Pointer. |
nBatchSize | A number of NppiImageDescriptor structures processed in this call (must be > 1). |
oSizeROI | Region-of-Interest (ROI). |
nppStreamCtx | Application Managed Stream Context. |