Table of Contents

Method Blur

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

Blur(InputArray, OutputArray, Size, Point?, BorderTypes)

Smoothes image using normalized box filter

public static void Blur(InputArray src, OutputArray dst, Size ksize, Point? anchor = null, BorderTypes borderType = BorderTypes.Default)

Parameters

src InputArray

The source image

dst OutputArray

The destination image; will have the same size and the same type as src

ksize Size

The smoothing kernel size

anchor Point?

The anchor point. The default value Point(-1,-1) means that the anchor is at the kernel center

borderType BorderTypes

The border mode used to extrapolate pixels outside of the image