Cv2Blur Method OpenCvSharp Class Library
Smoothes image using normalized box filter

Namespace:  OpenCvSharp.CPlusPlus
Assembly:  OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public static void Blur(
	InputArray src,
	OutputArray dst,
	Size ksize,
	Nullable<Point> anchor = null,
	BorderType borderType = BorderType.Reflect101
)

Parameters

src
Type: OpenCvSharp.CPlusPlusInputArray
The source image
dst
Type: OpenCvSharp.CPlusPlusOutputArray
The destination image; will have the same size and the same type as src
ksize
Type: OpenCvSharp.CPlusPlusSize
The smoothing kernel size
anchor (Optional)
Type: SystemNullablePoint
The anchor point. The default value Point(-1,-1) means that the anchor is at the kernel center
borderType (Optional)
Type: OpenCvSharpBorderType
The border mode used to extrapolate pixels outside of the image
See Also

Reference