A plain rectangle

interface AnnotationsBoundingBox {
    confidence?: number;
    xMax: number;
    xMin: number;
    yMax: number;
    yMin: number;
}

Properties

confidence?: number

The confidence score for the primitive. It should be between 0 and 1.

0

1

xMax: number

Maximum abscissa of the bounding box (right edge). Must be strictly more than x_min.

0

1

xMin: number

Minimum abscissa of the bounding box (left edge). Must be strictly less than x_max.

0

1

yMax: number

Maximum ordinate of the bounding box (top edge). Must be strictly more than y_min.

0

1

yMin: number

Minimum ordinate of the bounding box (bottom edge). Must be strictly less than y_max.

0

1