Face Detection and Alignment. Prof. Xin Yang HUST

Similar documents
Classifier Case Study: Viola-Jones Face Detector

Generic Object-Face detection

Recap Image Classification with Bags of Local Features

Face detection and recognition. Detection Recognition Sally

Face detection and recognition. Many slides adapted from K. Grauman and D. Lowe

Previously. Window-based models for generic object detection 4/11/2011

Window based detectors

Object detection as supervised classification

Image Analysis. Window-based face detection: The Viola-Jones algorithm. iphoto decides that this is a face. It can be trained to recognize pets!

Skin and Face Detection

Face/Flesh Detection and Face Recognition

Object Category Detection: Sliding Windows

Object Category Detection: Sliding Windows

Face Detection on OpenCV using Raspberry Pi

Object Detection Design challenges

Active learning for visual object recognition

Discriminative classifiers for image recognition


Object recognition (part 1)

Ensemble Methods, Decision Trees

Face and Nose Detection in Digital Images using Local Binary Patterns

Study of Viola-Jones Real Time Face Detector

Object detection. Asbjørn Berge. INF 5300 Advanced Topic: Video Content Analysis. Technology for a better society

Introduction. How? Rapid Object Detection using a Boosted Cascade of Simple Features. Features. By Paul Viola & Michael Jones

Object and Class Recognition I:

Detecting Pedestrians Using Patterns of Motion and Appearance (Viola & Jones) - Aditya Pabbaraju

CS6716 Pattern Recognition. Ensembles and Boosting (1)

High Level Computer Vision. Sliding Window Detection: Viola-Jones-Detector & Histogram of Oriented Gradients (HOG)

Viola Jones Face Detection. Shahid Nabi Hiader Raiz Muhammad Murtaz

Deformable Part Models

Detection of a Single Hand Shape in the Foreground of Still Images

Local invariant features

Face Tracking in Video

Human-Robot Interaction

Face detection. Bill Freeman, MIT April 5, 2005

Machine Learning for Signal Processing Detecting faces (& other objects) in images

Subject-Oriented Image Classification based on Face Detection and Recognition

Detecting Pedestrians Using Patterns of Motion and Appearance

Understanding Faces. Detection, Recognition, and. Transformation of Faces 12/5/17

Learning to Detect Faces. A Large-Scale Application of Machine Learning

Category vs. instance recognition

Human Detection. A state-of-the-art survey. Mohammad Dorgham. University of Hamburg

Object detection. Announcements. Last time: Mid-level cues 2/23/2016. Wed Feb 24 Kristen Grauman UT Austin

FACE DETECTION BY HAAR CASCADE CLASSIFIER WITH SIMPLE AND COMPLEX BACKGROUNDS IMAGES USING OPENCV IMPLEMENTATION

Object recognition. Methods for classification and image representation

Lecture 4 Face Detection and Classification. Lin ZHANG, PhD School of Software Engineering Tongji University Spring 2018

People detection in complex scene using a cascade of Boosted classifiers based on Haar-like-features

Detecting Pedestrians Using Patterns of Motion and Appearance

Unsupervised Improvement of Visual Detectors using Co-Training

A Cascade of Feed-Forward Classifiers for Fast Pedestrian Detection

Part-based and local feature models for generic object recognition

Detecting People in Images: An Edge Density Approach

Hybrid Face Detection System using Combination of Viola - Jones Method and Skin Detection

Viola Jones Simplified. By Eric Gregori

Object Recognition and Detection

CSE 151 Machine Learning. Instructor: Kamalika Chaudhuri

Face Detection. Raghuraman Gopalan AT&T Labs-Research, Middletown NJ USA

Automatic Initialization of the TLD Object Tracker: Milestone Update

Fast and Robust Classification using Asymmetric AdaBoost and a Detector Cascade

Detecting Pedestrians Using Patterns of Motion and Appearance

Detecting Faces in Images. Detecting Faces in Images. Finding faces in an image. Finding faces in an image. Finding faces in an image

Local features and image matching. Prof. Xin Yang HUST

Progress Report of Final Year Project

RGBD Face Detection with Kinect Sensor. ZhongJie Bi

A New Strategy of Pedestrian Detection Based on Pseudo- Wavelet Transform and SVM

A Survey of Various Face Detection Methods

Large-Scale Traffic Sign Recognition based on Local Features and Color Segmentation

Using the Forest to See the Trees: Context-based Object Recognition

Short Paper Boosting Sex Identification Performance

Person Detection in Images using HoG + Gentleboost. Rahul Rajan June 1st July 15th CMU Q Robotics Lab

Video Google faces. Josef Sivic, Mark Everingham, Andrew Zisserman. Visual Geometry Group University of Oxford

Computer Vision Group Prof. Daniel Cremers. 8. Boosting and Bagging

Fast Human Detection Using a Cascade of Histograms of Oriented Gradients

Object Category Detection. Slides mostly from Derek Hoiem

Histograms of Oriented Gradients for Human Detection p. 1/1

Detection of Multiple, Partially Occluded Humans in a Single Image by Bayesian Combination of Edgelet Part Detectors

Last week. Multi-Frame Structure from Motion: Multi-View Stereo. Unknown camera viewpoints

Generic Face Alignment Using an Improved Active Shape Model

Object Classification for Video Surveillance

A robust method for automatic player detection in sport videos

CS 559: Machine Learning Fundamentals and Applications 10 th Set of Notes

Parameter Sensitive Detectors

Feature descriptors. Alain Pagani Prof. Didier Stricker. Computer Vision: Object and People Tracking

Class Sep Instructor: Bhiksha Raj

Bias-Variance Trade-off (cont d) + Image Representations

Eye Detection by Haar wavelets and cascaded Support Vector Machine

Fast Learning for Statistical Face Detection

Angle Based Facial Expression Recognition

Detecting and Reading Text in Natural Scenes

Templates and Background Subtraction. Prof. D. Stricker Doz. G. Bleser

A Parts-based Person Detector

ii(i,j) = k i,l j efficiently computed in a single image pass using recurrences

SURF. Lecture6: SURF and HOG. Integral Image. Feature Evaluation with Integral Image

Category-level localization

Detecting Pedestrians by Learning Shapelet Features

AN HARDWARE ALGORITHM FOR REAL TIME IMAGE IDENTIFICATION 1

Face Recognition Pipeline 1

Part based models for recognition. Kristen Grauman

Selection of Scale-Invariant Parts for Object Class Recognition

Three Embedded Methods

Transcription:

Face Detection and Alignment Prof. Xin Yang HUST

Many slides adapted from P. Viola Face detection

Face detection Basic idea: slide a window across image and evaluate a face model at every location

Challenges of face detection Sliding window detector must evaluate tens of thousands of location/scale combinations Faces are rare: 0 10 per image For computational efficiency, we should try to spend as little time as possible on the non-face windows A megapixel image has ~10 6 pixels and a comparable number of candidate face locations To avoid having a false positive in every image, our false positive rate has to be less than 10-6

The Viola/Jones Face Detector A seminal approach to real-time object detection Training is slow, but detection is very fast Key ideas Integral images for fast feature evaluation Boosting for feature selection Attentional cascade for fast rejection of non-face windows P. Viola and M. Jones. Rapid object detection using a boosted cascade of simple features. CVPR 2001. P. Viola and M. Jones. Robust real-time face detection. IJCV 57(2), 2004.

Image Features Rectangle filters Value = (pixels in white area) (pixels in black area)

Example Source Result

Fast computation with integral images The integral image computes a value at each pixel (x,y) that is the sum of the pixel values above and to the left of (x,y), inclusive (x,y) This can quickly be computed in one pass through the image

Computing the integral image

Computing the integral image ii(x, y-1) s(x-1, y) i(x, y) Cumulative row sum: s(x, y) = s(x 1, y) + i(x, y) Integral image: ii(x, y) = ii(x, y 1) + s(x, y) MATLAB: ii = cumsum(cumsum(double(i)), 2);

Computing sum within a rectangle Let A,B,C,D be the values of the integral image at the corners of a rectangle Then the sum of original image values within the rectangle can be computed as: sum = A B C + D Only 3 additions are required for any size of rectangle! D C B A

Example Integral Image -1 +1 +2-2 -1 +1

Feature selection For a 24x24 detection region, the number of possible rectangle features is ~160,000!

Feature selection For a 24x24 detection region, the number of possible rectangle features is ~160,000! At test time, it is impractical to evaluate the entire feature set Can we create a good classifier using just a small subset of all possible features? How to select such a subset?

Boosting Boosting is a classification scheme that works by combining weak learners into a more accurate ensemble classifier A weak learner need only do better than chance Training consists of multiple boosting rounds During each boosting round, we select a weak learner that does well on examples that were hard for the previous weak learners Hardness is captured by weights attached to training examples Y. Freund and R. Schapire, A short introduction to boosting, Journal of Japanese Society for Artificial Intelligence, 14(5):771-780, September, 1999.

Training procedure Initially, weight each training example equally In each boosting round: Find the weak learner that achieves the lowest weighted training error Raise the weights of training examples misclassified by current weak learner Compute final classifier as linear combination of all weak learners (weight of each learner is directly proportional to its accuracy) Exact formulas for re-weighting and combining weak learners depend on the particular boosting scheme (e.g., AdaBoost) Y. Freund and R. Schapire, A short introduction to boosting, Journal of Japanese Society for Artificial Intelligence, 14(5):771-780, September, 1999.

Weak Classifier 1 Boosting illustration

Boosting illustration Weights Increased

Boosting illustration Weak Classifier 2

Boosting illustration Weights Increased

Boosting illustration Weak Classifier 3

Boosting illustration Final classifier is a combination of weak classifiers

Boosting for face detection Define weak learners based on rectangle features value of rectangle feature h( x) t window 1 if ft( x) t 0 otherwise threshold

Boosting for face detection Define weak learners based on rectangle features For each round of boosting: Evaluate each rectangle filter on each example Select best threshold for each filter Select best filter/threshold combination Reweight examples Computational complexity of learning: O(MNK) M rounds, N examples, K features

Boosting for face detection First two features selected by boosting: This feature combination can yield 100% detection rate and 50% false positive rate

Boosting for face detection A 200-feature classifier can yield 95% detection rate and a false positive rate of 1 in 14084 Not good enough! Receiver operating characteristic (ROC) curve

Attentional cascade We start with simple classifiers which reject many of the negative sub-windows while detecting almost all positive sub-windows Positive response from the first classifier triggers the evaluation of a second (more complex) classifier, and so on A negative outcome at any point leads to the immediate rejection of the sub-window IMAGE SUB-WINDOW Classifier 1 T Classifier 2 T Classifier 3 T FACE F F F NON-FACE NON-FACE NON-FACE

% Detection 0 100 Attentional cascade Chain classifiers that are progressively more complex and have lower false positive rates: Receiver operating characteristic % False Pos 0 50 vs false neg determined by IMAGE SUB-WINDOW Classifier 1 T Classifier 2 T Classifier 3 T FACE F F F NON-FACE NON-FACE NON-FACE

Attentional cascade The detection rate and the false positive rate of the cascade are found by multiplying the respective rates of the individual stages A detection rate of 0.9 and a false positive rate on the order of 10-6 can be achieved by a 10-stage cascade if each stage has a detection rate of 0.99 (0.99 10 0.9) and a false positive rate of about 0.30 (0.3 10 6 10-6 ) IMAGE SUB-WINDOW Classifier 1 T Classifier 2 T Classifier 3 T FACE F F F NON-FACE NON-FACE NON-FACE

Training the cascade Set target detection and false positive rates for each stage Keep adding features to the current stage until its target rates have been met Need to lower AdaBoost threshold to maximize detection (as opposed to minimizing total classification error) Test on a validation set If the overall false positive rate is not low enough, then add another stage Use false positives from current stage as the negative training examples for the next stage

The implemented system Training Data 5000 faces All frontal, rescaled to 24x24 pixels 300 million non-faces 9500 non-face images Faces are normalized Scale, translation Many variations Across individuals Illumination Pose

System performance Training time: weeks on 466 MHz Sun workstation 38 layers, total of 6061 features Average of 10 features evaluated per window on test set On a 700 Mhz Pentium III processor, the face detector can process a 384 by 288 pixel image in about.067 seconds 15 Hz 15 times faster than previous detector of comparable accuracy (Rowley et al., 1998)

Summary: Viola/Jones detector Rectangle features Integral images for fast computation Boosting for feature selection Attentional cascade for fast rejection of negative windows

Output of Face Detector on Test Images

Other detection tasks Facial Feature Localization Profile Detection Male vs. female

Profile Detection

Profile Features

Example using Viola-Jones detector Frontal faces detected and then tracked, character names inferred with alignment of script and subtitles. Everingham, M., Sivic, J. and Zisserman, A. "Hello! My name is... Buffy" - Automatic naming of characters in TV video, BMVC 2006. http://www.robots.ox.ac.uk/~vgg/research/nface/index.html

Consumer application: iphoto 2009 http://www.apple.com/ilife/iphoto/ Slide credit: Lana Lazebnik

Consumer application: iphoto 2009 Things iphoto thinks are faces Slide credit: Lana Lazebnik

Consumer application: iphoto 2009 Can be trained to recognize pets! http://www.maclife.com/article/news/iphotos_faces_recognizes_cats Slide credit: Lana Lazebnik

What other categories are amenable to windowbased representation?

Visual Perceptual Object and Recognition Sensory Augmented Tutorial Computing Kristen Grauman Pedestrian detection Detecting upright, walking humans also possible using sliding window s appearance/texture; e.g., SVM with Haar wavelets [Papageorgiou & Poggio, IJCV 2000] Space-time rectangle features [Viola, Jones & Snow, ICCV 2003] SVM with HoGs [Dalal & Triggs, CVPR 2005]

Visual Perceptual Object and Recognition Sensory Augmented Tutorial Computing Window-based detection: strengths Sliding window detection and global appearance descriptors: Simple detection protocol to implement Good feature choices critical Past successes for certain classes Kristen Grauman

Visual Perceptual Object and Recognition Sensory Augmented Tutorial Computing Window-based detection: Limitations High computational complexity For example: 250,000 locations x 30 orientations x 4 scales = 30,000,000 evaluations! If training binary detectors independently, means cost increases linearly with number of classes With so many windows, false positive rate better be low Kristen Grauman

Visual Perceptual Object and Recognition Sensory Augmented Tutorial Computing Kristen Grauman Limitations (continued) Not all objects are box shaped

Visual Perceptual Object and Recognition Sensory Augmented Tutorial Computing Kristen Grauman Limitations (continued) Non-rigid, deformable objects not captured well with representations assuming a fixed 2d structure; or must assume fixed viewpoint Objects with less-regular textures not captured well with holistic appearance-based descriptions

Visual Perceptual Object and Recognition Sensory Augmented Tutorial Computing Limitations (continued) If considering windows in isolation, context is lost Sliding window Detector s view Figure credit: Derek Hoiem Kristen Grauman

Visual Perceptual Object and Recognition Sensory Augmented Tutorial Computing Limitations (continued) In practice, often entails large, cropped training set (expensive) Requiring good match to a global appearance description can lead to sensitivity to partial occlusions Image credit: Adam, Rivlin, & Shimshoni Kristen Grauman