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