CvInvokeMedianBlur Method |
http://www.emgu.com
Blurs an image using the median filter.
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax public static void MedianBlur(
IInputArray src,
IOutputArray dst,
int ksize
)
Public Shared Sub MedianBlur (
src As IInputArray,
dst As IOutputArray,
ksize As Integer
)
public:
static void MedianBlur(
IInputArray^ src,
IOutputArray^ dst,
int ksize
)
static member MedianBlur :
src : IInputArray *
dst : IOutputArray *
ksize : int -> unit
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