A custom label detected in an image by a call to DetectCustomLabels.

interface CustomLabel {
    Confidence?: number;
    Geometry?: Geometry;
    Name?: string;
}

Properties

Confidence?: number

The confidence that the model has in the detection of the custom label. The range is 0-100. A higher value indicates a higher confidence.

Geometry?: Geometry

The location of the detected object on the image that corresponds to the custom label. Includes an axis aligned coarse bounding box surrounding the object and a finer grain polygon for more accurate spatial information.

Name?: string

The name of the custom label.