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

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

Document ID
UG1354
Release Date
2023-06-29
Version
3.5 日本語
車両、歩行者などの位置を検出するためのベース クラス。

入力はイメージ (cv:Mat) です。

出力は EfficientDetD2Result という名前の検出結果の構造体です。

サンプル コード:

  Mat img = cv::imread("sample_efficientdet_d2.jpg");
  auto efficientdet_d2 =
vitis::ai::EfficientDetD2::create("efficientdet_d2_tf",true);
  auto results = efficientdet_d2->run(img);
  for(const auto &r : results.bboxes){
     auto label = r.label;
     auto x = r.x * img.cols;
     auto y = r.y * img.rows;
     auto width = r.width * img.cols;
     auto heigth = r.height * img.rows;
     auto score = r.score;
     std::cout << "RESULT: " << label << "\t" << x << "\t" << y << "\t" <<
width
        << "\t" << height << "\t" << score << std::endl;
  }

width=\textwidth の場合のモデルの結果を次に示します。

図 1. 検出結果
detection result

関数クイック リファレンス

次の表に、vitis::ai::EfficientDetD2 クラスに定義されているすべての関数を示します。

表 1. 関数クイック リファレンス
タイプ メンバー 引数
std::unique_ptr< EfficientDetD2 > create
  • const std::string & model_name
  • bool need_preprocess
std::unique_ptr< EfficientDetD2 > create
  • const std::string & model_name
  • xir::Attrs * attrs
  • bool need_preprocess
vitis::ai::EfficientDetD2Result run
  • const cv::Mat & image
std::vector< vitis::ai::EfficientDetD2Result > run
  • const std::vector< cv::Mat > & images