What is Face Detection?
Face detection is the task of finding all faces in an image and reporting their locations. It answers 'Is there a face here, and where is it?' — without identifying who the person is.
What is Face Detection?
Face detection is the process of locating human faces in an image or video frame.
The output of face detection is a bounding box (rectangle) around each detected face. The detector tells you:
- That a face exists at a certain location
- The approximate size of the face
- The confidence score for the detection
Face detection does NOT tell you who the person is — that is a separate task called face recognition.
Face detection is used in:
- Camera autofocus (cameras focus on faces automatically)
- Photo organisation (Google Photos groups photos by person)
- Attendance systems (step 1: detect faces, step 2: recognise identity)
- Video conferencing (blurring backgrounds, adding effects)
- Security cameras (detecting when people are present)
- Smartphone photo apps (smile detection, face filters)
Machine Learning follows a structured pipeline from data to deployment
Face Detection vs. Face Recognition
- Face detection: FINDS faces in an image — answers 'is there a face and where?'
- Face recognition: IDENTIFIES faces — answers 'whose face is this?'
- Face detection comes first: you must find a face before you can identify it
- Face detection is much simpler and more reliable than face recognition
- Face recognition requires a database of known faces to compare against
- This module covers detection only — recognition requires more advanced techniques
- Example: security camera detects 3 faces in a frame (detection). A separate system identifies that one face matches a database record (recognition).
Key Takeaways
- Face detection is the task of finding all faces in an image and reporting their locations.
- Face detection: FINDS faces in an image — answers 'is there a face and where?'
- Face recognition: IDENTIFIES faces — answers 'whose face is this?'
- Face detection comes first: you must find a face before you can identify it