此基本类用于检测输入图像 (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. 结果图像
函数快速参考
下表列出了 vitis::ai::FaceDetect
类中定义的所有函数:
类型 | 成员 | 实参 |
---|---|---|
std::unique_ptr<
FaceDetect
> |
create |
|
std::unique_ptr<
FaceDetect
> |
create |
|
float | getThreshold |
|
void | setThreshold |
|
FaceDetectResult
|
run |
|
std::vector<
FaceDetectResult
> |
run |
|
std::vector<
FaceDetectResult
> |
run |
|