facedetect ネットワークの結果の構造体。
宣言
typedef struct
{
int width;
int height;
std::vector< BoundingBox
> rects;
} vitis::ai::FaceDetectResult;
メンバー | 説明 |
---|---|
width | 入力イメージの幅。 |
height | 入力イメージの高さ。 |
rects | 信頼度 >= 検出しきい値でフィルターされたすべての顔。 |
宣言
typedef struct
{
int width;
int height;
std::vector< BoundingBox
> rects;
} vitis::ai::FaceDetectResult;
メンバー | 説明 |
---|---|
width | 入力イメージの幅。 |
height | 入力イメージの高さ。 |
rects | 信頼度 >= 検出しきい値でフィルターされたすべての顔。 |