RedEyeMask Class

Represents a red eye mask calculated during the red eye removal process.

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

Syntax

C#
public sealed class RedEyeMask : IDisposable

Remarks

When the RedEyeRemoval transform is working, it builds a mask which contains the information about red eyes found in the image. You can get this mask through the Mask property. Of course, you can do it only after the algorithm completes.

This mask is a common grayscale bitmap where white areas correspond to red eyes and black ones - all the rest. You can get this bitmap using the BinaryMask property.

You can get blobs of the mask using the Blobs property which returns an array of RedEyeBlob objects.

Inheritance Hierarchy

System.Object
L Aurigma.GraphicsMill.Transforms.RedEyeMask

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