Click or drag to resize
CvInvokeBoxFilter Method
http://www.emgu.com
Blurs an image using the box filter.

Namespace: Emgu.CV
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
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