Click or drag to resize

CvInvokeMedianBlur Method

http://www.emgu.com
Blurs an image using the median 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 MedianBlur(
	IInputArray src,
	IOutputArray dst,
	int ksize
)

Parameters

src
Type: Emgu.CVIInputArray
Input 1-, 3-, or 4-channel image; when ksize is 3 or 5, the image depth should be CV_8U, CV_16U, or CV_32F, for larger aperture sizes, it can only be CV_8U.
dst
Type: Emgu.CVIOutputArray
Destination array of the same size and type as src.
ksize
Type: SystemInt32
Aperture linear size; it must be odd and greater than 1, for example: 3, 5, 7 ...
See Also