vitis::ai::PlateDetectResult::BoundingBox - 1.3 English

Vitis AI Library User Guide (UG1354)

Document ID
UG1354
Release Date
2021-02-03
Version
1.3 English

Declaration

typedef struct
{
  float score,
  float x,
  float y,
  float width,
  float height
} vitis::ai::PlateDetectResult::BoundingBox;
Table 1. Structure vitis::ai::PlateDetectResult::BoundingBox member description
Member Description
score Plate confidence, the value ranges from 0 to 1.
x

x-coordinate of the plate, x is normalized relative to input image columns, the value ranges from 0 to 1.

y

y-coordinate of the plate, y is normalized relative to input image rows, the value ranges from 0 to 1.

width

Plate width, width is normalized relative to input image columns, the value ranges from 0 to 1.

height

Plate height, height is normalized relative to input image rows, the value ranges from 0 to 1.