Maximum Class

Applies a maximum filter (also known as erosion) to an image.

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

Syntax

C#
public sealed class Maximum : MaskTransform

Remarks

Maximum filter is a non-linear filter which works in the following way: for each pixel it searches pixel with maximum brightness in "running window" of the radius specified with Radius property. This pixel is copied to the result bitmap.

That's why if you apply this filter on the image with has black objects on white background (for example text), they will be erosed.

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