vitis::ai::FaceDetect - 3.5 简体中文

Vitis AI Library 用户指南 (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
  • 浮动阈值
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