表示 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 | 所有面部,按置信度 >= 检测阈值来筛选。 |