vitis::ai::PlateDetectResult - 3.5 日本語

Vitis AI ライブラリ ユーザー ガイド (UG1354)

Document ID
UG1354
Release Date
2023-06-29
Version
3.5 日本語
platedetect ネットワークによって返された結果の構造体。

宣言

typedef struct
{
  int width;
  int height;
  BoundingBox box;
  Point top_left;
  Point top_right;
  Point bottom_left;
  Point bottom_right;

} vitis::ai::PlateDetectResult;
表 1. 構造体 vitis::ai::PlateDetectResult のメンバーの説明
メンバー 説明
width 入力イメージの幅。
height 入力イメージの高さ。
box プレートの位置。
top_left 左上の点。
top_right 右上の点。
bottom_left 左下の点。
bottom_right 右下の点。