Click or drag to resize

CvInvokeBlur Method

http://www.emgu.com
Blurs an image using the normalized box filter.

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static void Blur(
	IInputArray src,
	IOutputArray dst,
	Size ksize,
	Point anchor,
	BorderType borderType = BorderType.Reflect101
)

Parameters

src
Type: Emgu.CVIInputArray
input image; it can have any number of channels, which are processed independently, but the depth should be CV_8U, CV_16U, CV_16S, CV_32F or CV_64F.
dst
Type: Emgu.CVIOutputArray
Output image of the same size and type as src.
ksize
Type: System.DrawingSize
Blurring kernel size.
anchor
Type: System.DrawingPoint
Anchor point; default value Point(-1,-1) means that the anchor is at the kernel center.
borderType (Optional)
Type: Emgu.CV.CvEnumBorderType
Border mode used to extrapolate pixels outside of the image.
See Also