-3

I have been trying a long time to integrate Open Vino Face dectection ADAS model into the MFT pipeline so as to make my Windows 10 camera application detect faces at real time. But nothing worked out.

I am using visual studio 2019 and trying to code in C++ to develop a driver for the camera that does the face detection.

Is there any other way to make the windows 10 camera application to detect faces and draw a bounding box around the detected faces automatically while capturing?

Any help or suggestions are welcome

Thanks in Advance

Aurora
  • 3
  • 2

2 Answers2

0

You may use the Object Detection Demo application in the OpenVINO toolkit to run the face-detection-adas-0001 model. You need to download the model and convert it to OpenVINO Intermediate Representation format. Then, run the demo by using the following command:

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

Rommel_Intel
  • 1,369
  • 1
  • 4
  • 8
0

You can also use the 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, you need to download and convert them to Intermediate Representation format.

Rommel_Intel
  • 1,369
  • 1
  • 4
  • 8