Click or drag to resize

CvInvokeBoxFilter Method

http://www.emgu.com
Blurs an image using the box filter.

Namespace:  Emgu.CV
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static void BoxFilter(
	IInputArray src,
	IOutputArray dst,
	DepthType ddepth,
	Size ksize,
	Point anchor,
	bool normalize = true,
	BorderType borderType = BorderType.Reflect101
)

Parameters

src
Type: Emgu.CVIInputArray
Input image.
dst
Type: Emgu.CVIOutputArray
Output image of the same size and type as src.
ddepth
Type: Emgu.CV.CvEnumDepthType
The output image depth (-1 to use src.depth()).
ksize
Type: System.DrawingSize
Blurring kernel size.
anchor
Type: System.DrawingPoint
Anchor point; default value Point(-1,-1) means that the anchor is at the kernel center.
normalize (Optional)
Type: SystemBoolean
Specifying whether the kernel is normalized by its area or not.
borderType (Optional)
Type: Emgu.CV.CvEnumBorderType
Border mode used to extrapolate pixels outside of the image.
See Also