Applies a median filter to an image.
Namespace:
Aurigma.GraphicsMill.Transforms
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
public sealed class Median : MaskTransform
Median filter is a non-linear filter which works in the following way: for each pixel it searches median pixel in "running window" of the radius specified with Radius property. This pixel is copied to the result bitmap.
This filter is good for removing noise (especially impulse noise).