MatMedianBlur Method OpenCvSharp Class Library
Smoothes image using median filter. The source image must have 1-, 3- or 4-channel and its depth should be CV_8U , CV_16U or CV_32F.

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

public Mat MedianBlur(
	int ksize
)

Parameters

ksize
Type: SystemInt32
The aperture linear size. It must be odd and more than 1, i.e. 3, 5, 7 ...

Return Value

Type: Mat
The destination array; will have the same size and the same type as src.
See Also

Reference