Declaration
typedef struct
{
float score,
float x,
float y,
float width,
float height
} vitis::ai::PlateDetectResult::BoundingBox;
| 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. |