FilterSobelHorizSecondBorder
Applies horizontal (second derivative) Sobel filter with border.
Syntax
IppStatus ippiFilterSobelHorizSecondBorder_<mod>(const Ipp<srcDatatype>*
pSrc
, int
srcStep
, Ipp<dstDatatype>*
pDst
, int
dstStep
, IppiSize
dstRoiSize
, IppiMaskSize
mask
, IppiBorderType
borderType
, Ipp<srcDatatype>
borderValue
, Ipp8u*
pBuffer
);
Supported values for
mod
:8u16s_C1R | 32f_C1R |
Include Files
ippi.h
Domain Dependencies
Headers:
ippcore.h
,
ippvm.h
,
ipps.h
Libraries:
ippcore.lib
,
ippvm.lib
,
ipps.lib
Parameters
- 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 image ROI.
- mask
- Type of the filter kernel.
- borderType
- Type of border (see Borders in Neighborhood Operations); following values are possible:
- ippBorderConst
- Values of all border pixels are set to constant.
- ippBorderRepl
- Replicated border is used.
- ippBorderMirror
- Mirrored border is used
- ippBorderMirrorR
- Mirrored border with replication is used
- borderValue
- The constant value to assign to the pixels in the constant border (not applicable for other border's type).
- pBuffer
- Pointer to the working buffer.
Description
This function operates with ROI (see Regions of Interest in Intel IPP). This function applies the second derivative horizontal Sobel filter (
y
-derivative) to the source image pSrc
and stores results to the destination image of the same size pDst
. Source image can be used as the destination image if they both have the same data type. The values of border pixels are assigned in accordance with the borderType
and borderValue
parameters. The kernel of this filter is the matrix of either 3x3 or 5x5 size that is specified by the parameter mask
.The kernels have the following values with the anchor in the center cell (red):1 4 6 4 1
1 2 1 0 0 0 0 0
-2 -4 -2 or -2 -8 -12 -8 -2
1 2 1 0 0 0 0 0
1 4 6 4 1
The function requires the working buffer
pBuffer
which size should be computed by the function ippiFilterSobelHorizSecondBorderGetBufferSize
beforehand.Return Values
- ippStsNoErr
- Indicates no error. Any other value indicates an error or a warning.
- ippStsNullPtrErr
- Indicates an error condition if one of the specified pointers isNULL.
- ippStsSizeErr
- Indicates an error condition ifroiSizehas a field with a zero or negative value.
- ippStsStepErr
- Indicates an error condition ifsrcStepordstStepis less thanroiSize.width* <pixelSize>
- ippStsNotEvenStepErr
- Indicates an error condition if one of the step values is not divisible by 4 for floating-point images, or by 2 for short-integer images.
- ippStsBadArgErr
- Indicates an error ifborderTypeordivisorhas a wrong value.
- ippStsMaskErr
- Indicates an error condition ifmaskhas a wrong value.