表示 platedetect 网络返回的结果的结构体。
声明
typedef struct
{
int width;
int height;
BoundingBox box;
Point top_left;
Point top_right;
Point bottom_left;
Point bottom_right;
} vitis::ai::PlateDetectResult;
| 成员 | 描述 |
|---|---|
| width | 输入图像的宽度。 |
| height | 输入图像的高度。 |
| box | 车牌的位置。 |
| top_left | top_left 左上点。 |
| top_right | top_right 右上点。 |
| bottom_left | bottom_left 左下点。 |
| bottom_right | bottom_right 右下点。 |