/  Deep Learning Interview questions and answers   /  How can you do face detection in Open cv and what is the Difference between face detection and Recognition?
face detection in Open cv 6 (i2tutorials)

How can you do face detection in Open cv and what is the Difference between face detection and Recognition?

Face detection is a computer technology being used in a variety of applications that identifies human faces in digital images. Face-detection algorithms focus on the detection of frontal human faces. It is analogous to image detection in which the image of a person is matched bit by bit.

To run Face detection Program we should have Python, OpenCV, Webcam, Numpy.

Below Program is by using Haar Cascades.

face detection in Open cv 8 (i2tutorials)

We can also do Face Detection using Single Stop Detection.

face detection in Open cv 1 (i2tutorials)

face detection in Open cv 2 (i2tutorials)

face detection in Open cv 3 (i2tutorials)

face detection in Open cv 4 (i2tutorials)

Difference between Face Detection and Face Recognition is

One of the most important applications of face detection, however, is facial recognition. Face recognition describes a biometric technology that goes way beyond recognizing when a human face is present. It actually attempts to establish whose face it is. The process works using a computer application that captures a digital image of an individual’s face (sometimes taken from a video frame) and compares it to images in a database of stored records. While facial recognition isn’t 100% accurate, it can very accurately determine when there is a strong chance that an person’s face matches someone in the database.

There are lots of applications of face recognition. Face recognition is already being used to unlock phones and specific applications. Face recognition is also used for biometric surveillance.

In short, while all facial recognition systems use face detection, not all face detection systems have a facial recognition component.

face detection in Open cv 7 (i2tutorials)

Leave a comment