vitis::ai::PlateDetectResult - 3.0 English

Vitis AI Library User Guide (UG1354)

Document ID
UG1354
Release Date
2023-01-12
Version
3.0 English
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;
Table 1. Structure vitis::ai::PlateDetectResult Member Description
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.