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

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

Document ID
UG1354
Release Date
2023-06-29
Version
3.5 日本語
入力イメージ (cv::Mat) 内の顔の位置を検出するためのベース クラス。

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

出力は入力イメージ内の顔の位置およびスコアのベクターです。

サンプル コード:

auto image = cv::imread("sample_facedetect.jpg");
auto network = vitis::ai::FaceDetect::create(
               "densebox_640_360",
               true);
auto result = network->run(image);
for (const auto &r : result.rects) {
   auto score = r.score;
   auto x = r.x * image.cols;
   auto y = r.y * image.rows;
   auto width = r.width * image.cols;
   auto height = r.height * image.rows;
}

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

図 1. 結果イメージ
result image

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

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

表 1. 関数クイック リファレンス
タイプ メンバー 引数
std::unique_ptr< FaceDetect > create
  • const std::string & model_name
  • bool need_preprocess
std::unique_ptr< FaceDetect > create
  • const std::string & model_name
  • xir::Attrs * attrs
  • bool need_preprocess
float getThreshold
  • void
void setThreshold
  • float threshold
FaceDetectResult run
  • const cv::Mat & img
std::vector< FaceDetectResult > run
  • const std::vector< cv::Mat > & imgs
std::vector< FaceDetectResult > run
  • const std::vector< vart::xrt_bo_t > & input_bos