vitis::ai::YOLOv3Result - 3.5 日本語

Vitis AI ライブラリ ユーザー ガイド (UG1354)

Document ID
UG1354
Release Date
2023-06-29
Version
3.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 のベクター。