Table of Contents

Class RowSumFilter

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

A horizontal 1D box filter.

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

Constructors

RowSumFilter(DepthType, int, DepthType, int, int, int, BorderType, MCvScalar)

Creates a horizontal 1D box filter.

public RowSumFilter(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. Only 8U type is supported for now.

srcChannels int

Input image channel. Only single channel type is supported for now.

dstDepth DepthType

Output image depth. Only 32F type is supported for now.

dstChannels int

Output image channel. Only single channel type is supported for now.

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.