vitis::ai::YOLOv3Result::BoundingBox - 1.4.1 English

Vitis AI Library User Guide (UG1354)

Document ID
UG1354
Release Date
2021-12-11
Version
1.4.1 English
Struct of detection result with an object.

Declaration

typedef struct
{
  int label,
  float score,
  float x,
  float y,
  float width,
  float height
} vitis::ai::YOLOv3Result::BoundingBox;
Table 1. Structure vitis::ai::YOLOv3Result::BoundingBox member description
Member Description
label Classification.
score Confidence. The value ranges from 0 to 1.
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

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

height

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