vitis::ai::RetinaFaceResult::BoundingBox - 1.4.1 English

Vitis AI Library User Guide (UG1354)

Document ID
UG1354
Release Date
2021-12-11
Version
1.4.1 English
The coordinate and confidence of a face.

Declaration

typedef struct
{
  float x,
  float y,
  float width,
  float height,
  float score
} vitis::ai::RetinaFaceResult::BoundingBox;
Table 1. Structure vitis::ai::RetinaFaceResult::BoundingBox member description
Member Description
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

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

height

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

score Face confidence. The value ranges from 0 to 1.