Table of Contents

Class SeparableLinearFilter

Namespace
Emgu.CV.Cuda
Assembly
Emgu.CV.dll

SeparableLinearFilter

public class SeparableLinearFilter : CudaFilter, IDisposable
Inheritance
SeparableLinearFilter
Implements
Inherited Members

Constructors

SeparableLinearFilter(DepthType, int, DepthType, int, IInputArray, IInputArray, Point, BorderType, BorderType)

Create a SeparableLinearFilter

public SeparableLinearFilter(DepthType srcDepth, int srcChannels, DepthType dstDepth, int dstChannels, IInputArray rowKernel, IInputArray columnKernel, Point anchor, BorderType rowBorderType = BorderType.Default, BorderType columnBorderType = BorderType.Default)

Parameters

srcDepth DepthType

Source array depth

srcChannels int

Source array channels

dstDepth DepthType

Destination array depth

dstChannels int

Destination array channels

rowKernel IInputArray

Horizontal filter coefficients. Support kernels with size <= 32 .

columnKernel IInputArray

Vertical filter coefficients. Support kernels with size <= 32 .

anchor Point

Anchor position within the kernel. Negative values mean that anchor is positioned at the aperture center.

rowBorderType BorderType

Pixel extrapolation method in the vertical direction

columnBorderType BorderType

Pixel extrapolation method in the horizontal direction