vitis::ai::YOLOv3Result - 2.5 简体中文

Vitis AI Library 用户指南 (UG1354)

Document ID
UG1354
Release Date
2022-06-15
Version
2.5 简体中文
表示 YOLOv3 神经网络返回的结果的结构体。
注释: VOC 数据集类别:string label[20] = {"aeroplane", "bicycle", "bird", "boat", "bottle", "bus","car", "cat", "chair", "cow", "diningtable", "dog", "horse", "motorbike","person", "pottedplant", "sheep", "sofa", "train", "tvmonitor"};
注释: ADAS 数据集类别:string label[3] = {"car", "person", "cycle"};

声明

typedef struct
{
  int width;
  int height;
  std::vector< BoundingBox > bboxes;

} vitis::ai::YOLOv3Result;
表 1. 结构 vitis::ai::YOLOv3Result 成员描述
成员 描述
width 输入图像的宽度。
height 输出图像的高度。
bboxes 所有对象。 BoundingBox 的矢量。