Zubnet AILearnWiki › Facial Recognition
Safety

Facial Recognition

Face Recognition, Face ID
Identifying or verifying a person from their face in an image or video. Verification asks "is this person who they claim to be?" (1:1 matching, used in phone unlock). Identification asks "who is this person?" (1:N matching against a database, used in surveillance). Modern systems use deep learning to extract face embeddings and compare them, achieving superhuman accuracy under controlled conditions.

Why it matters

Facial recognition is one of the most powerful and most controversial AI applications. It enables convenient authentication (Face ID), helps find missing persons, and assists law enforcement. It also enables mass surveillance, raises serious privacy concerns, and has documented accuracy disparities across demographics — performing worse on women and people with darker skin tones. It's a textbook case of dual-use technology.

Deep Dive

Modern face recognition works in three steps: detection (finding faces in an image using MTCNN or RetinaFace), alignment (normalizing face orientation and scale), and embedding (converting the aligned face into a feature vector using a CNN like ArcFace or FaceNet). Two faces are compared by computing cosine similarity between their embeddings — above a threshold means match. The embedding captures identity-specific features while being robust to lighting, expression, and age changes.

The Bias Problem

Multiple studies (notably by Joy Buolamwini and Timnit Gebru) demonstrated that commercial face recognition systems had significantly higher error rates for women and people with darker skin. A system that's 99% accurate for white men but 90% accurate for Black women creates discriminatory outcomes when deployed in law enforcement. These findings led to improved training data diversity, accuracy auditing across demographics, and in some cases, bans on government use of face recognition.

Regulation

Facial recognition faces more regulation than almost any other AI technology. The EU AI Act bans real-time biometric identification in public spaces (with narrow exceptions). Several US cities have banned government use. Illinois' BIPA requires consent before collecting biometric data. The technology itself is neutral, but its deployment in surveillance contexts raises fundamental questions about privacy, civil liberties, and the balance between security and freedom.

Related Concepts

← All Terms
ESC