Zubnet AI学习Wiki › Facial Recognition
Safety

Facial Recognition

Face Recognition, Face ID
从图像或视频中通过人脸识别或验证一个人。验证问“这个人是她/他声称的那个人吗?”(1:1 匹配,用于手机解锁)。识别问“这个人是谁?”(1:N 匹配,对数据库,用于监控)。现代系统用深度学习提取人脸 embedding 并比较,在受控条件下达到超越人类的准确度。

为什么重要

人脸识别是最强大也最具争议的 AI 应用之一。它使便捷的身份验证(Face ID)成为可能,帮助寻找失踪者,协助执法。它也使大规模监控成为可能,引发严重的隐私担忧,并且在人口统计上有已记录的准确性差异 — 对女性和深色皮肤的人表现更差。这是一个教科书级别的双用途技术案例。

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.

相关概念

← 所有术语
ESC