如何在Windows 10 摄像头应用程序中进行实时人脸检测?

How to perform real time face detection in Windows 10 camera application?

我一直在尝试将 Open Vino Face detection ADAS 模型集成到 MFT 管道中,以便让我的 Windows 10 摄像头应用程序实时检测人脸。但是没有任何结果。

我正在使用 visual studio 2019 并尝试用 C++ 编写代码来为进行人脸检测的摄像头开发驱动程序。

有没有其他方法可以让 windows 10 相机应用程序在拍摄时自动检测人脸并在检测到的人脸周围绘制边界框?

欢迎任何帮助或建议

提前致谢

您可以使用 Object Detection Demo application in the OpenVINO toolkit to run the face-detection-adas-0001 模型。您需要下载模型并将其转换为 OpenVINO 中间表示格式。然后,运行 使用以下命令进行演示:

python object_detection_demo.py -i 0 -m "\openvino_2021.4.582\deployment_tools\tools\model_downloader\intel\face-detection-adas-0001\FP16\face-detection-adas-0001.xml" - 在 ssd

您也可以使用Object Detection C++ Demo in the OpenVINO toolkit to run the face-detection-adas-0001 model. The face-detection-adas-0001 model is from Intel's Pre-Trained Models, so you just need to download the model and run it with the demo. While for Public Pre-Trained Models,您需要将它们下载并转换为中间表示格式。