python-face-detection

Accurate face detection using a Deep Neural Network
|

Accurate face detection using a Deep Neural Network

In this project-tutorial, we will be learning how to detect human faces accurately using a deep neural network (dnn) module which comes pre-bundled within the OpenCV (cv2 package) library package. This module allows us to make inference on pre-trained deep-learning models. Requirements: 1 – Python 3.0 and above2 – PyCharm IDE or Visual Studio Code…

Face detection using Python and OpenCV
|

Face detection using Python and OpenCV

In this project-tutorial, we will be learning how to detect human faces in both images and videos using the OpenCV library package in Python. For this project we will be using the Haar-Cascade Classifiers (pre-trained classifiers for face, eyes, eye-glasses, smile, etc detection). In the first part, we will detect faces in an image and…