入力イメージ (cv::Mat) 内のプレート位置を検出するためのベース クラス。
入力は車両イメージ (cv::Mat) です。
出力は入力イメージ内のプレートの位置およびスコアです。
サンプル コード:
cv::Mat image = cv::imread("car.jpg");
auto network = vitis::ai::PlateDetect::create
(true);
auto r = network->run(image);
auto score = r.box.score.
auto x = r.box.x * image.cols;
auto y = r.box.y * image.rows;
auto witdh = r.box.width * image.cols;
auto height = r.box.height * image.rows;
関数クイック リファレンス
次の表に、vitis::ai::PlateDetect
クラスに定義されているすべての関数を示します。
タイプ | メンバー | 引数 |
---|---|---|
std::unique_ptr<
PlateDetect
> |
create |
|
std::unique_ptr<
PlateDetect
> |
create |
|
int | getInputWidth |
|
int | getInputHeight |
|
size_t | get_input_batch |
|
PlateDetectResult
|
run |
|
std::vector<
PlateDetectResult
> |
run |
|