物体の検出結果の構造体。
宣言
typedef struct
{
int label;
float score;
std::vector< float > box;
} vitis::ai::YOLOvXResult::BoundingBox;
メンバー | 説明 |
---|---|
label |
Classification
。 |
score | 信頼度。値の範囲は 0 ~ 1 です。 |
box |
(x0,y0,x1,y1)。x0,x1: 範囲は 0 ~ 入力イメージの列です。y0,y1: 範囲は 0 ~ 入力イメージの行です。 |