NamedBoundingBox

NamedBoundingBox to track an annotated bounding box.

Fields
classes[] string

Annotated classes.

entities[] string

Annotated entities.

scores[] number

Annotated scores. Scores are normalized between [0, 1].

x1 number

The top-left (x1, y1) corner's unnormalized coordinate.

x2 number
y1 number

The bottom-right (y1, y2) corner's unnormalized coordinate.

y2 number
JSON representation
{
  "classes": [
    string
  ],
  "entities": [
    string
  ],
  "scores": [
    number
  ],
  "x1": number,
  "x2": number,
  "y1": number,
  "y2": number
}