Struct of the result returned by the platedetect network.
Declaration
typedef struct
{
int width,
int height,
BoundingBox box,
Point
top_left,
Point
top_right,
Point
bottom_left,
Point
bottom_right
} vitis::ai::PlateDetectResult;
Member | Description |
---|---|
width | Width of input image. |
height | Height of input image. |
box | The position of plate. |
top_left | The top_left point. |
top_right | The top_right point. |
bottom_left | The bottom_left point. |
bottom_right | The bottom_right point. |