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 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. |