vitis::ai::YOLOv3Result::BoundingBox - 1.2 English

Vitis AI Library User Guide (UG1354)

Document ID
UG1354
Release Date
2020-07-21
Version
1.2 English

@Brief Struct of detection result with a 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 range from 0 to 1.
x

x-coordinate, x is normalized relative to the input image cols, its value range from 0 to 1.

y

y-coordinate, y is normalized relative to the input image rows, its value range from 0 to 1.

width

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

height

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