vitis::ai::Vehiclev3Result - 3.0 English

Vitis AI Library User Guide (UG1354)

Document ID
UG1354
Release Date
2023-01-12
Version
3.0 English
A struct to define detection result of MultiTaskv3 .

Declaration

typedef struct
{
  int label;
  float score;
  float x;
  float y;
  float width;
  float height;
  float angle;

} vitis::ai::Vehiclev3Result;
Table 1. Structure vitis::ai::Vehiclev3Result Member Description
Member Description
label

number of classes

  • 0 : "car"
  • 1 : "sign"
  • 2 : "person"
score Confidence of this target.
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.

angle The angle between the target vehicle and ourself.