Filters an image using a vertical Scharr kernel.
IppStatus ippiFilterScharrVert_<mod>(const Ipp<srcDatatype>* pSrc, int srcStep, Ipp<dstDatatype>* pDst, int dstStep, IppiSize dstRoiSize);
Supported values for mod:
8u16s_C1R | 8s16s_C1R | 32f_C1R |
pSrc |
Pointer to the source image ROI. |
srcStep |
Distance in bytes between starts of consecutive lines in the source image. |
pDst |
Pointer to the destination image ROI. |
dstStep |
Distance in bytes between starts of consecutive lines in the destination image. |
dstRoiSize |
Size of the source and destination ROI in pixels. |
The function ippiFilterScharrVert is declared in the ippi.h file. It operates with ROI (see Regions of Interest in Intel IPP). This function applies a vertical Scharr operator to an image ROI. The corresponding kernel is the matrix of 3x3 size with the following values:
3 0 -3
10 0 -10
3 0 -3
The anchor cell is the center cell of the kernel (red). The size of the source image ROI is equal to dstRoiSize, the size of the destination image ROI.
This filter has the effect of both enhancing and smoothing vertical edges of an image.
To ensure valid operation when image boundary pixels are processed, the application should correctly define additional border pixels (see Borders).
ippStsNoErr |
Indicates no error. Any other value indicates an error or a warning. |
ippStsNullPtrErr |
Indicates an error condition if pSrc or pDst is NULL. |
ippStsSizeErr |
Indicates an error condition if dstRoiSize has a field with a zero or negative value. |
ippStsStepErr |
Indicates an error condition if srcStep or dstStep has a zero or negative value. |
Copyright © 2000 - 2010, Intel Corporation. All rights reserved.