Struct of the result returned by the YOLOv7 neural network.
Declaration
typedef struct
{
int width;
int height;
std::vector< BoundingBox
> bboxes;
} vitis::ai::YOLOv7Result;
Member | Description |
---|---|
width | Width of input image. |
height | Height of output image. |
bboxes | All objects, The vector of
BoundingBox
. |