vitis::ai::YOLOvXResult::BoundingBox - 2.0 English

Vitis AI Library User Guide (UG1354)

Document ID
UG1354
Release Date
2022-01-20
Version
2.0 English
Struct of detection result with an object.

Declaration

typedef struct
{
  int label,
  float score,
  std::vector< float > box
} vitis::ai::YOLOvXResult::BoundingBox;
Table 1. Structure vitis::ai::YOLOvXResult::BoundingBox member description
Member Description
label Classification.
score Confidence. The value ranges from 0 to 1.
box

(x0,y0,x1,y1). x0, x1 Range from 0 to the input image columns. y0,y1. Range from 0 to the input image rows.