Applies a maximum filter (also known as erosion) to an image.
Namespace:
Aurigma.GraphicsMill.Transforms
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
public sealed class Maximum : MaskTransform
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.