Struct of the result returned by the
YOLOv3
neural network. Note: VOC dataset category:string label[20] = {"aeroplane", "bicycle", "bird", "boat", "bottle", "bus","car", "cat", "chair", "cow", "diningtable", "dog", "horse", "motorbike","person", "pottedplant", "sheep", "sofa", "train", "tvmonitor"};
Note: ADAS dataset category : string label[3] = {"car", "person", "cycle"};
Declaration
typedef struct
{
int width,
int height,
std::vector< BoundingBox
> bboxes
} vitis::ai::YOLOv3Result;
Member | Description |
---|---|
width | Width of input image. |
height | Height of output image. |
bboxes | All objects, The vector of BoundingBox . |