vitis::ai::RefineDetResult::BoundingBox - 1.2 English

Vitis AI Library User Guide (UG1354)

Document ID
UG1354
Release Date
2020-07-21
Version
1.2 English
Struct of a object coordinate and confidence.

Declaration

typedef struct
{
  float x,
  float y,
  float width,
  float height,
  float score
} vitis::ai::RefineDetResult::BoundingBox;
Table 1. Structure vitis::ai::RefineDetResult::BoundingBox member description
Member Description
x

x-coordinate , x is normalized relative to the input image cols ,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

body width , width is normalized relative to the input image cols , the value range from 0 to 1.

height

body height , heigth is normalized relative to the input image rows , the value range from 0 to 1.

score body detection confidence, the value range from 0 to 1.