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
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic Mat MedianBlur(
	int ksize
)
Public Function MedianBlur ( 
	ksize As Integer
) As Mat
public:
Mat^ MedianBlur(
	int ksize
)
member MedianBlur : 
        ksize : int -> Mat 
function MedianBlur(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: 
MatThe destination array; will have the same size and the same type as src.
 See Also
See Also