The coordinate and confidence of a face.
Declaration
typedef struct
{
float x,
float y,
float width,
float height,
float score
} vitis::ai::RetinaFaceResult::BoundingBox;
| Member | Description |
|---|---|
| x |
x-coordinate, x is normalized relative to the input image columns ,the value range from 0 to 1. |
| y |
y-coordinate, y is normalized relative to the input image rows ,the value range from 0 to 1. |
| width |
Face width, width is normalized relative to the input image columns , the value range from 0 to 1. |
| height |
Face height, height is normalized relative to the input image rows ,the value range from 0 to 1. |
| score | Face confidence, the value ranges from 0 to 1. |