Smoothes image using normalized box filter
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic Mat Blur(
	Size ksize,
	Nullable<Point> anchor = null,
	BorderTypes borderType = BorderTypes.Reflect101
)
Public Function Blur ( 
	ksize As Size,
	Optional anchor As Nullable(Of Point) = Nothing,
	Optional borderType As BorderTypes = BorderTypes.Reflect101
) As Mat
public:
Mat^ Blur(
	Size ksize, 
	Nullable<Point> anchor = nullptr, 
	BorderTypes borderType = BorderTypes::Reflect101
)
member Blur : 
        ksize : Size * 
        ?anchor : Nullable<Point> * 
        ?borderType : BorderTypes 
(* Defaults:
        let _anchor = defaultArg anchor null
        let _borderType = defaultArg borderType BorderTypes.Reflect101
*)
-> Mat 
function Blur(ksize, anchor, borderType);
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: 
MatThe destination image; will have the same size and the same type as src
 See Also
See Also