Median Class

Applies a median filter to an image.

Namespace: Aurigma.GraphicsMill.Transforms
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

C#
public sealed class Median : MaskTransform

Remarks

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).

Inheritance Hierarchy

Thread Safety

Static members of this type are not safe for multi-threaded operations. Instance members of this type are not safe for multi-threaded operations.

See Also

Reference