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;| メンバー | 説明 |
|---|---|
| width | 入力イメージの幅。 |
| height | 出力イメージの高さ。 |
| bboxes | すべての物体。BoundingBox のベクター。 |