vitis::ai::YOLOv3Result

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 のベクター。