TransformsProvider.Median Method

Applies a median filter to the bitmap.

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

Syntax

C#
public void Median(
	int radius
)

Parameters

radius

Type: System.Int32

The radius of the filter in pixels.

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 parameter. This pixel is copied to the result bitmap.

This filter is good for removing noise (especially impulse noise).

See Also

Reference