表示 YOLOv7 神经网络返回的结果的结构体。
声明
typedef struct
{
int width;
int height;
std::vector< BoundingBox
> bboxes;
} vitis::ai::YOLOv7Result;
成员 | 描述 |
---|---|
width | 输入图像的宽度。 |
height | 输出图像的高度。 |
bboxes | 所有对象。
BoundingBox
的矢量。 |