YOLOv2
ネットワークによって返された結果の構造体。宣言
typedef struct
{
int width;
int height;
std::vector< BoundingBox
> bboxes;
} vitis::ai::YOLOv2Result;
メンバー | 説明 |
---|---|
width | 入力イメージの幅。 |
height | 入力イメージの高さ。 |
bboxes | すべての物体。 |
YOLOv2
ネットワークによって返された結果の構造体。宣言
typedef struct
{
int width;
int height;
std::vector< BoundingBox
> bboxes;
} vitis::ai::YOLOv2Result;
メンバー | 説明 |
---|---|
width | 入力イメージの幅。 |
height | 入力イメージの高さ。 |
bboxes | すべての物体。 |