FilterScharrVertBorder

Applies vertical Scharr filter with border.

Syntax

IppStatus ippiFilterScharrVertBorder_8u8s_C1R(const Ipp8u* pSrc, int srcStep, Ipp8s* pDst, int dstStep, IppiSize roiSize, IppiBorderType borderType, Ipp8u borderValue, int divisor, Ipp8u* pBuffer);

IppStatus ippiFilterScharrVertBorder_8u16s_C1R(const Ipp8u* pSrc, int srcStep, Ipp16s* pDst, int dstStep, IppiSize roiSize, IppiBorderType borderType, Ipp8u borderValue, Ipp8u* pBuffer);

IppStatus ippiFilterScharrVertBorder_32f_C1R(const Ipp32f* pSrc, int srcStep, Ipp32f* pDst, int dstStep, IppiSize roiSize, IppiBorderType borderType, Ipp32f borderValue, Ipp8u* pBuffer);

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.

roiSize

Size of the source and destination image ROI.

borderType

Type of border (see Borders); following values are possible:

ippBorderConst

Values of all border pixels are set to constant.

ippBorderRepl

Replicated border is used.

ippBorderWrap

Wrapped 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).

divisor

The constant value that output pixel value is divided by.

pBuffer

Pointer to the working buffer.

Description

The function ippiFilterScharrVertBorder is declared in the ippcv.h file. It operates with ROI (see Regions of Interest in Intel IPP). This function applies the vertical Scharr filter (x-derivative) to the source image pSrc and stores results to the destination image of the same size pDst. For the function flavor ippiFilterScharrVertBorder_32f_C1R the source image can be used as the destination image. The values of border pixels are assigned in accordance with the borderType and borderValue parameters. The kernel of this filter is a matrix of 3x3 size with the anchor in the center cell (red) and the following values:

3 0 -3
10 0 -10
3 0 -3

The function requires the working buffer pBuffer whose size should be computed by the function ippiFilterScharrVertGetBufferSize 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 is NULL.

ippStsSizeErr

Indicates an error condition if roiSize has a field with a zero or negative value.

ippStsStepErr

Indicates an error condition if srcStep or dstStep is less than roiSize.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 if borderType or divisor has a wrong value.

Submit feedback on this help topic

Copyright © 2000 - 2011, Intel Corporation. All rights reserved.