| MatMedianBlur Method |
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: 1.0.0
Syntax public Mat MedianBlur(
int ksize
)
Public Function MedianBlur (
ksize As Integer
) As Mat
public:
Mat^ MedianBlur(
int ksize
)
member MedianBlur :
ksize : int -> Mat
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