Visible to Intel only — GUID: GUID-866E5472-53E7-43B9-AA05-5D6A2D8DFBC0
Visible to Intel only — GUID: GUID-866E5472-53E7-43B9-AA05-5D6A2D8DFBC0
Median
Creates an image consisting of median values of three source images.
Syntax
IppStatus ippiMedian_8u_P3C1R(const Ipp8u* pSrc[3], int srcStep, Ipp8u* pDst, int dstStep, IppiSize size);
Include Files
ippi.h
Domain Dependencies
Headers: ippcore.h, ippvm.h, ipps.h
Libraries: ippcore.lib, ippvm.lib, ipps.lib
Parameters
pSrc |
Array of pointers to the ROI in each plane of the source image. |
srcStep |
Distance in bytes between starts of consecutive lines in each plane of the source image. |
pDst |
Pointer to the destination image ROI. |
dstStep |
Distance in bytes between starts of consecutive lines in the destination image. |
size |
Size of the source and destination image ROI. |
Description
This function operates with ROI (see Regions of Interest in Intel IPP). This function sets each pixel in the destination image ROI as the median value of correspondent pixels in the each plane of the source image.
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. |
ippStsSizeErr |
Indicates an error condition if size has a field with zero or negative value. |