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
srcInputArrayThe source image
dstOutputArrayThe destination image; will have the same size and the same type as src
ksizeSizeThe smoothing kernel size
anchorPoint?The anchor point. The default value Point(-1,-1) means that the anchor is at the kernel center
borderTypeBorderTypesThe border mode used to extrapolate pixels outside of the image