Class RowSumFilter
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
DepthTypeInput image depth. Only 8U type is supported for now.
srcChannels
intInput image channel. Only single channel type is supported for now.
dstDepth
DepthTypeOutput image depth. Only 32F type is supported for now.
dstChannels
intOutput image channel. Only single channel type is supported for now.
ksize
intKernel size.
anchor
intAnchor point. The default value (-1) means that the anchor is at the kernel center.
borderType
BorderTypePixel extrapolation method.
borderValue
MCvScalarDefault border value.