Struct of an object coordinate, confidence and classification.
Declaration
typedef struct
{
int label,
float score,
float x,
float y,
float width,
float height
} vitis::ai::SSDResult::BoundingBox;
| Member | Description |
|---|---|
| label |
Classification. |
| score | Confidence. |
| x |
x-coordinate, x is normalized relative to the input image columns, the value ranges from 0 to 1. |
| y |
y-coordinate ,y is normalized relative to the input image rows, the value ranges from 0 to 1. |
| width |
Width, width is normalized relative to the input image columns, the value ranges from 0 to 1. |
| height |
Height, height is normalized relative to the input image rows, the value ranges from 0 to 1. |