Information about where an object (DetectCustomLabels) or text (DetectText) is located on an image.

interface Geometry {
    BoundingBox?: BoundingBox;
    Polygon?: Point[];
}

Properties

BoundingBox?: BoundingBox

An axis-aligned coarse representation of the detected item's location on the image.

Polygon?: Point[]

Within the bounding box, a fine-grained polygon around the detected item.