vitis::ai::YOLOvXResult::BoundingBox - 3.5 日本語

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

Document ID
UG1354
Release Date
2023-06-29
Version
3.5 日本語
物体の検出結果の構造体。

宣言

typedef struct
{
  int label;
  float score;
  std::vector< float > box;

} vitis::ai::YOLOvXResult::BoundingBox;
表 1. 構造体 vitis::ai::YOLOvXResult::BoundingBox のメンバーの説明
メンバー 説明
label Classification
score 信頼度。値の範囲は 0 ~ 1 です。
box

(x0,y0,x1,y1)。x0,x1: 範囲は 0 ~ 入力イメージの列です。y0,y1: 範囲は 0 ~ 入力イメージの行です。