Table of Contents

Class CudaBoxFilter

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

Box filter

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

Constructors

CudaBoxFilter(DepthType, int, DepthType, int, Size, Point, BorderType, MCvScalar)

Create a BoxMax filter.

public CudaBoxFilter(DepthType srcDepth, int srcChannels, DepthType dstDepth, int dstChannels, Size ksize, Point anchor, BorderType borderType = BorderType.Default, MCvScalar borderValue = default)

Parameters

srcDepth DepthType

The source image depth type

srcChannels int

The number of channels in the source image

dstDepth DepthType

The destination image depth type

dstChannels int

The number of channels in the destination image

ksize Size

Size of the kernel

anchor Point

The center of the kernel. User (-1, -1) for the default kernel center.

borderType BorderType

The border type.

borderValue MCvScalar

The border value.