NVIDIA 2D Image And Signal Performance Primitives (NPP)
Version 11.3.0.*
|
Flood fill a connected region of an image with a specified new value. More...
FloodFillGetBufferSize | |
Before calling any of the FloodFill functions the application first needs to call the FloodFillGetBufferSize function to determine the amount of device memory to allocate as a working buffer. The application allocated device memory is then passed as the pBuffer parameter to the corresponding FloodFill function. | |
NppStatus | nppiFloodFillGetBufferSize (NppiSize oSizeROI, int *hpBufferSize) |
Calculate scratch buffer size needed for the FloodFill function based on destination image oSizeROI width and height. More... |
|
FloodFill | |
In place flood fill of a region of pixels connected to the pixel at the seed pixel location in an image with a new pixel value. Before calling any of the FloodFill functions the application first needs to call the FloodFillGetBufferSize function to determine the amount of device memory to allocate as a working buffer. The allocated device memory is then passed as the pBuffer parameter to the corresponding FloodFill function. Optionally the function can return connected region information for the filled region in the pConnectedRegion NppiConnectedRegion structure in host memory. The oBoundingBox x and y will be set to the left and top coordinates and width and height will be set to the right bottom coordinates of the bounding box relative to pSrcDst. Set pConnectedRegion to NULL if not required. Requesting pConnectedRegion information may slightly degrade performance. | |
NppStatus | nppiFloodFill_8u_C1IR_Ctx (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp8u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 8-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFill_8u_C1IR (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp8u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFill_8u_C3IR_Ctx (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp8u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 8-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFill_8u_C3IR (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp8u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFill_16u_C1IR_Ctx (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp16u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 16-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFill_16u_C1IR (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp16u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFill_16u_C3IR_Ctx (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp16u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 16-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFill_16u_C3IR (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp16u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFill_32u_C1IR_Ctx (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp32u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 32-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFill_32u_C1IR (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp32u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFill_32u_C3IR_Ctx (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp32u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 32-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFill_32u_C3IR (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp32u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
FloodFillBoundary | |
In place flood fill of a region of pixels connected to the pixel at the seed pixel location in an image with a new pixel value. Also fill boundary of filled region with a specified color. Before calling any of the FloodFill functions the application first needs to call the FloodFillGetBufferSize function to determine the amount of device memory to allocate as a working buffer. The allocated device memory is then passed as the pBuffer parameter to the corresponding FloodFill function. Optionally the function can return connected region information for the filled region in the pConnectedRegion NppiConnectedRegion structure in host memory. The oBoundingBox x and y will be set to the left and top coordinates and width and height will be set to the right bottom coordinates of the bounding box relative to pSrcDst. Set pConnectedRegion to NULL if not required. Requesting pConnectedRegion information may slightly degrade performance. | |
NppStatus | nppiFloodFillBoundary_8u_C1IR_Ctx (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp8u nNewValue, const Npp8u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 8-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFillBoundary_8u_C1IR (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp8u nNewValue, const Npp8u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillBoundary_8u_C3IR_Ctx (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp8u aNewValues[3], const Npp8u aBoundaryValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 8-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFillBoundary_8u_C3IR (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp8u nNewValue, const Npp8u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillBoundary_16u_C1IR_Ctx (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp16u nNewValue, const Npp16u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 16-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFillBoundary_16u_C1IR (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp16u nNewValue, const Npp16u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillBoundary_16u_C3IR_Ctx (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp16u aNewValues[3], const Npp16u aBoundaryValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 16-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFillBoundary_16u_C3IR (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp16u nNewValue, const Npp16u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillBoundary_32u_C1IR_Ctx (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp32u nNewValue, const Npp32u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 32-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFillBoundary_32u_C1IR (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp32u nNewValue, const Npp32u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillBoundary_32u_C3IR_Ctx (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp32u aNewValues[3], const Npp32u aBoundaryValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 32-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFillBoundary_32u_C3IR (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, const Npp32u aNewValues[3], const Npp32u aBoundaryValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
FloodFillRange | |
In place flood fill of a region of pixels connected to the pixel at the seed pixel location and with a Pixel value >= Min and <= Max in an image with a new pixel value. Before calling any of the FloodFill functions the application first needs to call the FloodFillGetBufferSize function to determine the amount of device memory to allocate as a working buffer. The allocated device memory is then passed as the pBuffer parameter to the corresponding FloodFill function. Optionally the function can return connected region information for the filled region in the pConnectedRegion NppiConnectedRegion structure in host memory. The oBoundingBox x and y will be set to the left and top coordinates and width and height will be set to the right bottom coordinates of the bounding box relative to pSrcDst. Set pConnectedRegion to NULL if not required. Requesting pConnectedRegion information may slightly degrade performance. | |
NppStatus | nppiFloodFillRange_8u_C1IR_Ctx (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp8u nMin, Npp8u nMax, const Npp8u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 8-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFillRange_8u_C1IR (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp8u nMin, Npp8u nMax, const Npp8u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillRange_8u_C3IR_Ctx (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp8u aMin[3], Npp8u aMax[3], const Npp8u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 8-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFillRange_8u_C3IR (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp8u aMin[3], Npp8u aMax[3], const Npp8u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillRange_16u_C1IR_Ctx (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp16u nMin, Npp16u nMax, const Npp16u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 16-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFillRange_16u_C1IR (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp16u nMin, Npp16u nMax, const Npp16u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillRange_16u_C3IR_Ctx (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp16u aMin[3], Npp16u aMax[3], const Npp16u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 16-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFillRange_16u_C3IR (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp16u aMin[3], Npp16u aMax[3], const Npp16u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillRange_32u_C1IR_Ctx (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp32u nMin, Npp32u nMax, const Npp32u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 32-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFillRange_32u_C1IR (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp32u nMin, Npp32u nMax, const Npp32u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillRange_32u_C3IR_Ctx (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp32u aMin[3], Npp32u aMax[3], const Npp32u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 32-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFillRange_32u_C3IR (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp32u aMin[3], Npp32u aMax[3], const Npp32u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
FloodFillRangeBoundary | |
In place flood fill of a region of pixels connected to the pixel at the seed pixel location and with a Pixel value >= Min and <= Max in an image with a new pixel value. Also fill boundary of filled region with a specified color. Before calling any of the FloodFill functions the application first needs to call the FloodFillGetBufferSize function to determine the amount of device memory to allocate as a working buffer. The allocated device memory is then passed as the pBuffer parameter to the corresponding FloodFill function. Optionally the function can return connected region information for the filled region in the pConnectedRegion NppiConnectedRegion structure in host memory. The oBoundingBox x and y will be set to the left and top coordinates and width and height will be set to the right bottom coordinates of the bounding box relative to pSrcDst. Set pConnectedRegion to NULL if not required. Requesting pConnectedRegion information may slightly degrade performance. | |
NppStatus | nppiFloodFillRangeBoundary_8u_C1IR_Ctx (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp8u nMin, Npp8u nMax, const Npp8u nNewValue, const Npp8u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 8-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFillRangeBoundary_8u_C1IR (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp8u nMin, Npp8u nMax, const Npp8u nNewValue, const Npp8u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillRangeBoundary_8u_C3IR_Ctx (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp8u aMin[3], Npp8u aMax[3], const Npp8u aNewValues[3], const Npp8u aBoundaryValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 8-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFillRangeBoundary_8u_C3IR (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp8u aMin[3], Npp8u aMax[3], const Npp8u aNewValues[3], const Npp8u aBoundryValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillRangeBoundary_16u_C1IR_Ctx (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp16u nMin, Npp16u nMax, const Npp16u nNewValue, const Npp16u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 16-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFillRangeBoundary_16u_C1IR (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp16u nMin, Npp16u nMax, const Npp16u nNewValue, const Npp16u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillRangeBoundary_16u_C3IR_Ctx (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp16u aMin[3], Npp16u aMax[3], const Npp16u aNewValues[3], const Npp16u aBoundaryValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 16-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFillRangeBoundary_16u_C3IR (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp16u aMin[3], Npp16u aMax[3], const Npp16u aNewValues[3], const Npp16u aBoundaryValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillRangeBoundary_32u_C1IR_Ctx (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp32u nMin, Npp32u nMax, const Npp32u nNewValue, const Npp32u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 32-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFillRangeBoundary_32u_C1IR (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp32u nMin, Npp32u nMax, const Npp32u nNewValue, const Npp32u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillRangeBoundary_32u_C3IR_Ctx (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp32u aMin[3], Npp32u aMax[3], const Npp32u aNewValues[3], const Npp32u aBoundaryValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 32-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFillRangeBoundary_32u_C3IR (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp32u aMin[3], Npp32u aMax[3], const Npp32u aNewValues[3], const Npp32u aBoundaryValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
FloodFillGradient | |
In place flood fill of a region of pixels connected to the pixel at the seed pixel location and with an original pixel value including seed - Min to seed + Max in an image with a new pixel value. In place flood fill of a region of pixels connected to the pixel at the seed pixel location in an image with a new pixel value. Before calling any of the FloodFill functions the application first needs to call the FloodFillGetBufferSize function to determine the amount of device memory to allocate as a working buffer. The allocated device memory is then passed as the pBuffer parameter to the corresponding FloodFill function. Optionally the function can return connected region information for the filled region in the pConnectedRegion NppiConnectedRegion structure in host memory. The oBoundingBox x and y will be set to the left and top coordinates and width and height will be set to the right bottom coordinates of the bounding box relative to pSrcDst. Set pConnectedRegion to NULL if not required. Requesting pConnectedRegion information may slightly degrade performance. | |
NppStatus | nppiFloodFillGradient_8u_C1IR_Ctx (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp8u nMin, Npp8u nMax, const Npp8u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 8-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFillGradient_8u_C1IR (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp8u nMin, Npp8u nMax, const Npp8u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillGradient_8u_C3IR_Ctx (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp8u aMin[3], Npp8u aMax[3], const Npp8u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 8-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFillGradient_8u_C3IR (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp8u aMin[3], Npp8u aMax[3], const Npp8u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillGradient_16u_C1IR_Ctx (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp16u nMin, Npp16u nMax, const Npp16u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 16-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFillGradient_16u_C1IR (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp16u nMin, Npp16u nMax, const Npp16u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillGradient_16u_C3IR_Ctx (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp16u aMin[3], Npp16u aMax[3], const Npp16u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 16-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFillGradient_16u_C3IR (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp16u aMin[3], Npp16u aMax[3], const Npp16u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillGradient_32u_C1IR_Ctx (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp32u nMin, Npp32u nMax, const Npp32u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 32-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFillGradient_32u_C1IR (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp32u nMin, Npp32u nMax, const Npp32u nNewValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillGradient_32u_C3IR_Ctx (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp32u aMin[3], Npp32u aMax[3], const Npp32u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 32-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFillGradient_32u_C3IR (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp32u aMin[3], Npp32u aMax[3], const Npp32u aNewValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
FloodFillGradientBoundary | |
In place flood fill of a region of pixels connected to the pixel at the seed pixel location and with an original pixel value including seed - Min to seed + Max in an image with a new pixel value. Also fill boundary of filled region with a specified color. In place flood fill of a region of pixels connected to the pixel at the seed pixel location in an image with a new pixel value. Before calling any of the FloodFill functions the application first needs to call the FloodFillGetBufferSize function to determine the amount of device memory to allocate as a working buffer. The allocated device memory is then passed as the pBuffer parameter to the corresponding FloodFill function. Optionally the function can return connected region information for the filled region in the pConnectedRegion NppiConnectedRegion structure in host memory. The oBoundingBox x and y will be set to the left and top coordinates and width and height will be set to the right bottom coordinates of the bounding box relative to pSrcDst. Set pConnectedRegion to NULL if not required. Requesting pConnectedRegion information may slightly degrade performance. | |
NppStatus | nppiFloodFillGradientBoundary_8u_C1IR_Ctx (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp8u nMin, Npp8u nMax, const Npp8u nNewValue, const Npp8u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 8-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFillGradientBoundary_8u_C1IR (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp8u nMin, Npp8u nMax, const Npp8u nNewValue, const Npp8u nBoundryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillGradientBoundary_8u_C3IR_Ctx (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp8u aMin[3], Npp8u aMax[3], const Npp8u aNewValues[3], const Npp8u aBoundaryValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 8-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFillGradientBoundary_8u_C3IR (Npp8u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp8u aMin[3], Npp8u aMax[3], const Npp8u aNewValues[3], const Npp8u aBoundaryValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillGradientBoundary_16u_C1IR_Ctx (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp16u nMin, Npp16u nMax, const Npp16u nNewValue, const Npp16u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 16-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFillGradientBoundary_16u_C1IR (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp16u nMin, Npp16u nMax, const Npp16u nNewValue, const Npp16u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillGradientBoundary_16u_C3IR_Ctx (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp16u aMin[3], Npp16u aMax[3], const Npp16u aNewValues[3], const Npp16u aBoundaryValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 16-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFillGradientBoundary_16u_C3IR (Npp16u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp16u aMin[3], Npp16u aMax[3], const Npp16u aNewValues[3], const Npp16u aBoundaryValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillGradientBoundary_32u_C1IR_Ctx (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp32u nMin, Npp32u nMax, const Npp32u nNewValue, const Npp32u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
1 channel 32-bit unsigned integer grayscale in place flood fill. More... |
|
NppStatus | nppiFloodFillGradientBoundary_32u_C1IR (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp32u nMin, Npp32u nMax, const Npp32u nNewValue, const Npp32u nBoundaryValue, NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
NppStatus | nppiFloodFillGradientBoundary_32u_C3IR_Ctx (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp32u aMin[3], Npp32u aMax[3], const Npp32u aNewValues[3], const Npp32u aBoundaryValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer, NppStreamContext nppStreamCtx) |
3 channel 32-bit unsigned integer color in place flood fill. More... |
|
NppStatus | nppiFloodFillGradientBoundary_32u_C3IR (Npp32u *pSrcDst, int nSrcDstStep, NppiPoint oSeed, Npp32u aMin[3], Npp32u aMax[3], const Npp32u aNewValues[3], const Npp32u aBoundaryValues[3], NppiNorm eNorm, NppiSize oSizeROI, NppiConnectedRegion *pConnectedRegion, Npp8u *pBuffer) |
Flood fill a connected region of an image with a specified new value.
NppStatus nppiFloodFill_16u_C1IR | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp16u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFill_16u_C1IR_Ctx | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp16u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 16-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nNewValue | Image pixel value to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFill_16u_C3IR | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp16u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFill_16u_C3IR_Ctx | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp16u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 16-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aNewValues | Image pixel values to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFill_32u_C1IR | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp32u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFill_32u_C1IR_Ctx | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp32u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 32-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nNewValue | Image pixel value to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFill_32u_C3IR | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp32u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFill_32u_C3IR_Ctx | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp32u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 32-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aNewValues | Image pixel values to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFill_8u_C1IR | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp8u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFill_8u_C1IR_Ctx | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp8u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 8-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nNewValue | Image pixel value to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFill_8u_C3IR | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp8u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFill_8u_C3IR_Ctx | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp8u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 8-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aNewValues | Image pixel values to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillBoundary_16u_C1IR | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp16u | nNewValue, | ||
const Npp16u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillBoundary_16u_C1IR_Ctx | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp16u | nNewValue, | ||
const Npp16u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 16-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nNewValue | Image pixel value to be used to replace matching pixels. |
nBoundaryValue | Image pixel value to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillBoundary_16u_C3IR | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp16u | nNewValue, | ||
const Npp16u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillBoundary_16u_C3IR_Ctx | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp16u | aNewValues[3], | ||
const Npp16u | aBoundaryValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 16-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aNewValues | Image pixel values to be used to replace matching pixels. |
aBoundaryValues | Image pixel values to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillBoundary_32u_C1IR | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp32u | nNewValue, | ||
const Npp32u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillBoundary_32u_C1IR_Ctx | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp32u | nNewValue, | ||
const Npp32u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 32-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nNewValue | Image pixel value to be used to replace matching pixels. |
nBoundaryValue | Image pixel value to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillBoundary_32u_C3IR | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp32u | aNewValues[3], | ||
const Npp32u | aBoundaryValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillBoundary_32u_C3IR_Ctx | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp32u | aNewValues[3], | ||
const Npp32u | aBoundaryValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 32-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aNewValues | Image pixel values to be used to replace matching pixels. |
aBoundaryValues | Image pixel values to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillBoundary_8u_C1IR | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp8u | nNewValue, | ||
const Npp8u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillBoundary_8u_C1IR_Ctx | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp8u | nNewValue, | ||
const Npp8u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 8-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nNewValue | Image pixel value to be used to replace matching pixels. |
nBoundaryValue | Image pixel value to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillBoundary_8u_C3IR | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp8u | nNewValue, | ||
const Npp8u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillBoundary_8u_C3IR_Ctx | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
const Npp8u | aNewValues[3], | ||
const Npp8u | aBoundaryValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 8-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aNewValues | Image pixel values to be used to replace matching pixels. |
aBoundaryValues | Image pixel values to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
Calculate scratch buffer size needed for the FloodFill function based on destination image oSizeROI width and height.
oSizeROI | Region-of-Interest (ROI). |
hpBufferSize | Required buffer size in bytes. |
NppStatus nppiFloodFillGradient_16u_C1IR | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp16u | nMin, | ||
Npp16u | nMax, | ||
const Npp16u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillGradient_16u_C1IR_Ctx | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp16u | nMin, | ||
Npp16u | nMax, | ||
const Npp16u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 16-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nMin | Value of tested pixel must be >= seed value - this value. |
nMax | Valeu of tested pixel must be <= seed value + this value. |
nNewValue | Image pixel value to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillGradient_16u_C3IR | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp16u | aMin[3], | ||
Npp16u | aMax[3], | ||
const Npp16u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillGradient_16u_C3IR_Ctx | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp16u | aMin[3], | ||
Npp16u | aMax[3], | ||
const Npp16u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 16-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aMin | Value of each element of tested pixel must be >= the corresponding seed value - aMin value. |
aMax | Valeu of each element of tested pixel must be <= the corresponding seed value + aMax value. |
aNewValues | Image pixel values to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillGradient_32u_C1IR | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp32u | nMin, | ||
Npp32u | nMax, | ||
const Npp32u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillGradient_32u_C1IR_Ctx | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp32u | nMin, | ||
Npp32u | nMax, | ||
const Npp32u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 32-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nMin | Value of tested pixel must be >= seed value - this value. |
nMax | Valeu of tested pixel must be <= seed value + this value. |
nNewValue | Image pixel value to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillGradient_32u_C3IR | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp32u | aMin[3], | ||
Npp32u | aMax[3], | ||
const Npp32u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillGradient_32u_C3IR_Ctx | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp32u | aMin[3], | ||
Npp32u | aMax[3], | ||
const Npp32u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 32-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aMin | Value of each element of tested pixel must be >= the corresponding seed value - aMin value. |
aMax | Valeu of each element of tested pixel must be <= the corresponding seed value + aMax value. |
aNewValues | Image pixel values to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillGradient_8u_C1IR | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp8u | nMin, | ||
Npp8u | nMax, | ||
const Npp8u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillGradient_8u_C1IR_Ctx | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp8u | nMin, | ||
Npp8u | nMax, | ||
const Npp8u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 8-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nMin | Value of tested pixel must be >= seed value - this value. |
nMax | Valeu of tested pixel must be <= seed value + this value. |
nNewValue | Image pixel value to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillGradient_8u_C3IR | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp8u | aMin[3], | ||
Npp8u | aMax[3], | ||
const Npp8u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillGradient_8u_C3IR_Ctx | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp8u | aMin[3], | ||
Npp8u | aMax[3], | ||
const Npp8u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 8-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aMin | Value of each element of tested pixel must be >= the corresponding seed value - aMin value. |
aMax | Valeu of each element of tested pixel must be <= the corresponding seed value + aMax value. |
aNewValues | Image pixel values to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillGradientBoundary_16u_C1IR | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp16u | nMin, | ||
Npp16u | nMax, | ||
const Npp16u | nNewValue, | ||
const Npp16u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillGradientBoundary_16u_C1IR_Ctx | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp16u | nMin, | ||
Npp16u | nMax, | ||
const Npp16u | nNewValue, | ||
const Npp16u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 16-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nMin | Value of tested pixel must be >= seed value - this value. |
nMax | Valeu of tested pixel must be <= seed value + this value. |
nNewValue | Image pixel value to be used to replace matching pixels. |
nBoundaryValue | Image pixel value to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillGradientBoundary_16u_C3IR | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp16u | aMin[3], | ||
Npp16u | aMax[3], | ||
const Npp16u | aNewValues[3], | ||
const Npp16u | aBoundaryValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillGradientBoundary_16u_C3IR_Ctx | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp16u | aMin[3], | ||
Npp16u | aMax[3], | ||
const Npp16u | aNewValues[3], | ||
const Npp16u | aBoundaryValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 16-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aMin | Value of each element of tested pixel must be >= the corresponding seed value - aMin value. |
aMax | Valeu of each element of tested pixel must be <= the corresponding seed value + aMax value. |
aNewValues | Image pixel values to be used to replace matching pixels. |
aBoundaryValues | Image pixel values to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillGradientBoundary_32u_C1IR | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp32u | nMin, | ||
Npp32u | nMax, | ||
const Npp32u | nNewValue, | ||
const Npp32u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillGradientBoundary_32u_C1IR_Ctx | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp32u | nMin, | ||
Npp32u | nMax, | ||
const Npp32u | nNewValue, | ||
const Npp32u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 32-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nMin | Value of tested pixel must be >= seed value - this value. |
nMax | Valeu of tested pixel must be <= seed value + this value. |
nNewValue | Image pixel value to be used to replace matching pixels. |
nBoundaryValue | Image pixel value to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillGradientBoundary_32u_C3IR | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp32u | aMin[3], | ||
Npp32u | aMax[3], | ||
const Npp32u | aNewValues[3], | ||
const Npp32u | aBoundaryValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillGradientBoundary_32u_C3IR_Ctx | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp32u | aMin[3], | ||
Npp32u | aMax[3], | ||
const Npp32u | aNewValues[3], | ||
const Npp32u | aBoundaryValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 32-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aMin | Value of each element of tested pixel must be >= the corresponding seed value - aMin value. |
aMax | Valeu of each element of tested pixel must be <= the corresponding seed value + aMax value. |
aNewValues | Image pixel values to be used to replace matching pixels. |
aBoundaryValues | Image pixel values to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillGradientBoundary_8u_C1IR | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp8u | nMin, | ||
Npp8u | nMax, | ||
const Npp8u | nNewValue, | ||
const Npp8u | nBoundryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillGradientBoundary_8u_C1IR_Ctx | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp8u | nMin, | ||
Npp8u | nMax, | ||
const Npp8u | nNewValue, | ||
const Npp8u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 8-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nMin | Value of tested pixel must be >= seed value - this value. |
nMax | Valeu of tested pixel must be <= seed value + this value. |
nNewValue | Image pixel value to be used to replace matching pixels. |
nBoundaryValue | Image pixel value to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillGradientBoundary_8u_C3IR | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp8u | aMin[3], | ||
Npp8u | aMax[3], | ||
const Npp8u | aNewValues[3], | ||
const Npp8u | aBoundaryValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillGradientBoundary_8u_C3IR_Ctx | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp8u | aMin[3], | ||
Npp8u | aMax[3], | ||
const Npp8u | aNewValues[3], | ||
const Npp8u | aBoundaryValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 8-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aMin | Value of each element of tested pixel must be >= the corresponding seed value - aMin value. |
aMax | Valeu of each element of tested pixel must be <= the corresponding seed value + aMax value. |
aNewValues | Image pixel values to be used to replace matching pixels. |
aBoundaryValues | Image pixel values to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillRange_16u_C1IR | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp16u | nMin, | ||
Npp16u | nMax, | ||
const Npp16u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillRange_16u_C1IR_Ctx | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp16u | nMin, | ||
Npp16u | nMax, | ||
const Npp16u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 16-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nMin | Value of tested pixel must be >= this value. |
nMax | Valeu of tested pixel must be <= this value. |
nNewValue | Image pixel value to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillRange_16u_C3IR | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp16u | aMin[3], | ||
Npp16u | aMax[3], | ||
const Npp16u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillRange_16u_C3IR_Ctx | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp16u | aMin[3], | ||
Npp16u | aMax[3], | ||
const Npp16u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 16-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aMin | Value of each element of tested pixel must be >= the corresponding aMin value. |
aMax | Valeu of each element of tested pixel must be <= the corresponding aMax value. |
aNewValues | Image pixel values to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillRange_32u_C1IR | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp32u | nMin, | ||
Npp32u | nMax, | ||
const Npp32u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillRange_32u_C1IR_Ctx | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp32u | nMin, | ||
Npp32u | nMax, | ||
const Npp32u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 32-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nMin | Value of tested pixel must be >= this value. |
nMax | Valeu of tested pixel must be <= this value. |
nNewValue | Image pixel value to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillRange_32u_C3IR | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp32u | aMin[3], | ||
Npp32u | aMax[3], | ||
const Npp32u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillRange_32u_C3IR_Ctx | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp32u | aMin[3], | ||
Npp32u | aMax[3], | ||
const Npp32u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 32-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aMin | Value of each element of tested pixel must be >= the corresponding aMin value. |
aMax | Valeu of each element of tested pixel must be <= the corresponding aMax value. |
aNewValues | Image pixel values to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillRange_8u_C1IR | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp8u | nMin, | ||
Npp8u | nMax, | ||
const Npp8u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillRange_8u_C1IR_Ctx | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp8u | nMin, | ||
Npp8u | nMax, | ||
const Npp8u | nNewValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 8-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nMin | Value of tested pixel must be >= this value. |
nMax | Valeu of tested pixel must be <= this value. |
nNewValue | Image pixel value to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillRange_8u_C3IR | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp8u | aMin[3], | ||
Npp8u | aMax[3], | ||
const Npp8u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillRange_8u_C3IR_Ctx | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp8u | aMin[3], | ||
Npp8u | aMax[3], | ||
const Npp8u | aNewValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 8-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aMin | Value of each element of tested pixel must be >= the corresponding aMin value. |
aMax | Valeu of each element of tested pixel must be <= the corresponding aMax value. |
aNewValues | Image pixel values to be used to replace matching pixels. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillRangeBoundary_16u_C1IR | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp16u | nMin, | ||
Npp16u | nMax, | ||
const Npp16u | nNewValue, | ||
const Npp16u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillRangeBoundary_16u_C1IR_Ctx | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp16u | nMin, | ||
Npp16u | nMax, | ||
const Npp16u | nNewValue, | ||
const Npp16u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 16-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nMin | Value of tested pixel must be >= this value. |
nMax | Valeu of tested pixel must be <= this value. |
nNewValue | Image pixel value to be used to replace matching pixels. |
nBoundaryValue | Image pixel value to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillRangeBoundary_16u_C3IR | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp16u | aMin[3], | ||
Npp16u | aMax[3], | ||
const Npp16u | aNewValues[3], | ||
const Npp16u | aBoundaryValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillRangeBoundary_16u_C3IR_Ctx | ( | Npp16u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp16u | aMin[3], | ||
Npp16u | aMax[3], | ||
const Npp16u | aNewValues[3], | ||
const Npp16u | aBoundaryValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 16-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aMin | Value of each element of tested pixel must be >= the corresponding aMin value. |
aMax | Valeu of each element of tested pixel must be <= the corresponding aMax value. |
aNewValues | Image pixel values to be used to replace matching pixels. |
aBoundaryValues | Image pixel values to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillRangeBoundary_32u_C1IR | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp32u | nMin, | ||
Npp32u | nMax, | ||
const Npp32u | nNewValue, | ||
const Npp32u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillRangeBoundary_32u_C1IR_Ctx | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp32u | nMin, | ||
Npp32u | nMax, | ||
const Npp32u | nNewValue, | ||
const Npp32u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 32-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nMin | Value of tested pixel must be >= this value. |
nMax | Valeu of tested pixel must be <= this value. |
nNewValue | Image pixel value to be used to replace matching pixels. |
nBoundaryValue | Image pixel value to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillRangeBoundary_32u_C3IR | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp32u | aMin[3], | ||
Npp32u | aMax[3], | ||
const Npp32u | aNewValues[3], | ||
const Npp32u | aBoundaryValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillRangeBoundary_32u_C3IR_Ctx | ( | Npp32u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp32u | aMin[3], | ||
Npp32u | aMax[3], | ||
const Npp32u | aNewValues[3], | ||
const Npp32u | aBoundaryValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 32-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aMin | Value of each element of tested pixel must be >= the corresponding aMin value. |
aMax | Valeu of each element of tested pixel must be <= the corresponding aMax value. |
aNewValues | Image pixel values to be used to replace matching pixels. |
aBoundaryValues | Image pixel values to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillRangeBoundary_8u_C1IR | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp8u | nMin, | ||
Npp8u | nMax, | ||
const Npp8u | nNewValue, | ||
const Npp8u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillRangeBoundary_8u_C1IR_Ctx | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp8u | nMin, | ||
Npp8u | nMax, | ||
const Npp8u | nNewValue, | ||
const Npp8u | nBoundaryValue, | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
1 channel 8-bit unsigned integer grayscale in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
nMin | Value of tested pixel must be >= this value. |
nMax | Valeu of tested pixel must be <= this value. |
nNewValue | Image pixel value to be used to replace matching pixels. |
nBoundaryValue | Image pixel value to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |
NppStatus nppiFloodFillRangeBoundary_8u_C3IR | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp8u | aMin[3], | ||
Npp8u | aMax[3], | ||
const Npp8u | aNewValues[3], | ||
const Npp8u | aBoundryValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer | ||
) |
NppStatus nppiFloodFillRangeBoundary_8u_C3IR_Ctx | ( | Npp8u * | pSrcDst, |
int | nSrcDstStep, | ||
NppiPoint | oSeed, | ||
Npp8u | aMin[3], | ||
Npp8u | aMax[3], | ||
const Npp8u | aNewValues[3], | ||
const Npp8u | aBoundaryValues[3], | ||
NppiNorm | eNorm, | ||
NppiSize | oSizeROI, | ||
NppiConnectedRegion * | pConnectedRegion, | ||
Npp8u * | pBuffer, | ||
NppStreamContext | nppStreamCtx | ||
) |
3 channel 8-bit unsigned integer color in place flood fill.
pSrcDst | In-Place Image Pointer. |
nSrcDstStep | In-Place-Image Line Step in bytes. |
oSeed | Image location of seed pixel value to be used for comparison. |
aMin | Value of each element of tested pixel must be >= the corresponding aMin value. |
aMax | Valeu of each element of tested pixel must be <= the corresponding aMax value. |
aNewValues | Image pixel values to be used to replace matching pixels. |
aBoundaryValues | Image pixel values to be used for region boundary. |
eNorm | Type of pixel connectivity test to use, nppiNormInf will use 8 way connectivity and nppiNormL1 will use 4 way connectivity. |
oSizeROI | Region-of-Interest (ROI). |
pConnectedRegion | Optional host memory pointer to an NppiConnectedRegion object which returns information about the filled region. Set to NULL if not needed. |
pBuffer | Pointer to device memory scratch buffer at least as large as value returned by the corresponding LabelMarkersUFGetBufferSize call. |
nppStreamCtx | Application Managed Stream Context. |