Table of Contents

Class ColumnSumFilter

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

A vertical 1D box filter.

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

Constructors

ColumnSumFilter(DepthType, int, DepthType, int, int, int, BorderType, MCvScalar)

Creates a vertical 1D box filter.

public ColumnSumFilter(DepthType srcDepth, int srcChannels, DepthType dstDepth, int dstChannels, int ksize, int anchor = -1, BorderType borderType = BorderType.Default, MCvScalar borderValue = default)

Parameters

srcDepth DepthType

Input image depth.

srcChannels int

Input image channel.

dstDepth DepthType

Output image depth.

dstChannels int

Output image channel.

ksize int

Kernel size.

anchor int

Anchor point. The default value (-1) means that the anchor is at the kernel center.

borderType BorderType

Pixel extrapolation method.

borderValue MCvScalar

Default border value.