Cv2GpuBlur Method OpenCvSharp Class Library
Acts as a synonym for the normalized box filter.

Namespace:  OpenCvSharp.CPlusPlus.Gpu
Assembly:  OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public static void Blur(
	GpuMat src,
	GpuMat dst,
	Size ksize,
	Nullable<Point> anchor,
	Stream stream = null
)

Parameters

src
Type: OpenCvSharp.CPlusPlus.GpuGpuMat
Input image. CV_8UC1 and CV_8UC4 source types are supported.
dst
Type: OpenCvSharp.CPlusPlus.GpuGpuMat
Output image type. The size and type is the same as src.
ksize
Type: OpenCvSharp.CPlusPlusSize
Kernel size.
anchor
Type: SystemNullablePoint
Anchor point. The default value Point(-1, -1) means that the anchor is at the kernel center.
stream (Optional)
Type: OpenCvSharp.CPlusPlus.GpuStream
Stream for the asynchronous version.
See Also

Reference