Click or drag to resize

Cv2Blur Method

Smoothes image using normalized box filter

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void Blur(
	InputArray src,
	OutputArray dst,
	Size ksize,
	Nullable<Point> anchor = null,
	BorderTypes borderType = BorderTypes.Reflect101
)

Parameters

src
Type: OpenCvSharpInputArray
The source image
dst
Type: OpenCvSharpOutputArray
The destination image; will have the same size and the same type as src
ksize
Type: OpenCvSharpSize
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: OpenCvSharpBorderTypes
The border mode used to extrapolate pixels outside of the image
See Also