Click or drag to resize

MatBlur Method

Smoothes image using normalized box filter

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public Mat Blur(
	Size ksize,
	Nullable<Point> anchor = null,
	BorderTypes borderType = BorderTypes.Reflect101
)

Parameters

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

Return Value

Type: Mat
The destination image; will have the same size and the same type as src
See Also