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