vitis::ai::PlateDetectResult::BoundingBox - 1.4 English

Vitis AI Library User Guide (UG1354)

Document ID
UG1354
Release Date
2021-07-22
Version
1.4 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. x is normalized relative to the input image columns. Range from 0 to 1.

y

y-coordinate. y is normalized relative to the input image rows. Range from 0 to 1.

width

Plate width. Width is normalized relative to the input image columns, Range from 0 to 1.

height

Plate height. Heigth is normalized relative to the input image rows, Range from 0 to 1.