Classifier Case Study: Viola-Jones Face Detector

Similar documents
Face Detection and Alignment. Prof. Xin Yang HUST

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

Face detection and recognition. Detection Recognition Sally

Recap Image Classification with Bags of Local Features

Generic Object-Face detection

Skin and Face Detection

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

Window based detectors

Face Detection on OpenCV using Raspberry Pi

Active learning for visual object recognition

Object detection as supervised classification

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

Face/Flesh Detection and Face Recognition

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

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

CS6716 Pattern Recognition. Ensembles and Boosting (1)

Study of Viola-Jones Real Time Face Detector

Viola Jones Face Detection. Shahid Nabi Hiader Raiz Muhammad Murtaz

Object recognition (part 1)

Face and Nose Detection in Digital Images using Local Binary Patterns

Object Category Detection: Sliding Windows

Ensemble Methods, Decision Trees


Face Tracking in Video

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

Viola Jones Simplified. By Eric Gregori

Fast and Robust Classification using Asymmetric AdaBoost and a Detector Cascade

CSE 151 Machine Learning. Instructor: Kamalika Chaudhuri

Face detection. Bill Freeman, MIT April 5, 2005

RGBD Face Detection with Kinect Sensor. ZhongJie Bi

Object Detection Design challenges

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

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

Object Category Detection: Sliding Windows

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

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

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

Unsupervised Improvement of Visual Detectors using Co-Training

A Hybrid Face Detection System using combination of Appearance-based and Feature-based methods

Object and Class Recognition I:

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

Three Embedded Methods

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

Scott Smith Advanced Image Processing March 15, Speeded-Up Robust Features SURF

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

Subject-Oriented Image Classification based on Face Detection and Recognition

Face Recognition Pipeline 1

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

Face Detection using Hierarchical SVM

Progress Report of Final Year Project

Discriminative classifiers for image recognition

Class Sep Instructor: Bhiksha Raj

Recognition problems. Face Recognition and Detection. Readings. What is recognition?

Learning a Rare Event Detection Cascade by Direct Feature Selection

Towards Enhancing the Face Detectors Based on Measuring the Effectiveness of Haar Features and Threshold Methods

Viola-Jones with CUDA

Human-Robot Interaction

Automatic Initialization of the TLD Object Tracker: Milestone Update

Rapid Object Detection Using a Boosted Cascade of Simple Features

Detecting People in Images: An Edge Density Approach

Criminal Identification System Using Face Detection and Recognition

AN HARDWARE ALGORITHM FOR REAL TIME IMAGE IDENTIFICATION 1

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

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

A Survey of Various Face Detection Methods

Detecting and Reading Text in Natural Scenes

Detecting Pedestrians Using Patterns of Motion and Appearance

Detecting Pedestrians Using Patterns of Motion and Appearance

Assessment of Building Classifiers for Face Detection

Angle Based Facial Expression Recognition

Fast Learning for Statistical Face Detection

Color Model Based Real-Time Face Detection with AdaBoost in Color Image

Computer Vision Group Prof. Daniel Cremers. 6. Boosting

Short Paper Boosting Sex Identification Performance

Triangle Method for Fast Face Detection on the Wild

Exploiting scene constraints to improve object detection algorithms for industrial applications

Mouse Pointer Tracking with Eyes

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

Project Report for EE7700

DEPARTMENT OF INFORMATICS

Interactive Offline Tracking for Color Objects

Detecting License Plates

2 Cascade detection and tracking

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

A Parts-based Person Detector

Detecting Pedestrians Using Patterns of Motion and Appearance

Face Detection CUDA Accelerating

Face detection, validation and tracking. Océane Esposito, Grazina Laurinaviciute, Alexandre Majetniak

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

Boosting Sex Identification Performance

A robust method for automatic player detection in sport videos

Human Object Classification in Daubechies Complex Wavelet Domain

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

CSC411 Fall 2014 Machine Learning & Data Mining. Ensemble Methods. Slides by Rich Zemel

Adaboost Classifier by Artificial Immune System Model

Object Recognition and Classification from 3D Point Clouds Antoine El Daher Sehyuk Park

A Cascade of Feed-Forward Classifiers for Fast Pedestrian Detection

Component-based Face Recognition with 3D Morphable Models

Fast Component-Based QR Code Detection in Arbitrarily Acquired Images

Face Recognition using SURF Features and SVM Classifier

Transcription:

Classifier Case Study: Viola-Jones Face Detector 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. Most of these slides are from Svetlana Lazebnik http://www.cs.unc.edu/~lazebnik/spring09/

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 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: Haar-like image features Integral images for fast feature evaluation Boosting for feature selection Attentional cascade for fast rejection of non-face windows

Image Features Haar-like filters Rectangular regions consisting of +1,-1, coefficients Similar to Haar wavelets Value = (pixels in white area) (pixels in black area)

Example When does the filter have high response? Source images

Image Features Appropriate combinations of added and subtracted rectangles approximate various derivative filters, e.g. dx, dy, dx dy, dx 2, at different locations and scale.

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 This can quickly be computed in one pass through the image (x,y)

Origins of integral images Note idea of cumulative distributions in probability theory Then P(a <= X <= b) = D(b)-D(a) a b

Computing the integral image Can be computed by a single pass through the 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: D C B A Sum = A - B - C + D Only 3 additions are required for any size of rectangle!

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

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

Feature selection For a 24x24 detection region, the number of Haar features considered 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.

Boosting illustration Weak Classifier 1 h 1 (x)

Boosting illustration Weights Increased Increasing the weights forces subsequent classifiers to focus on residual errors

Boosting illustration Weak Classifier 2 h 2 (x)

Boosting illustration Weights Increased

Boosting illustration Weak Classifier 3 h 3 (x)

Boosting illustration Final classifier is a weighted combination of the weak classifiers

Boosting Boosting is a type of greedy method for minimizing average loss over a training set by adding new features/classifiers one at a time. Advantages of boosting Integrates classification with feature selection Complexity of training is linear instead of quadratic in the number of training examples Flexibility in the choice of weak learners, boosting scheme Testing is fast Easy to implement Disadvantages Needs many training examples Often doesn t work as well as SVM (especially for manyclass problems)

Boosting for face detection Weak learners here are defined based on thresholded Haar features value of Haar feature h t (x) = window " $ # %$ +1 if p t f t (x) > p t θ t 1 otherwise parity +1/-1 threshold Note: the parity value just serves to change the direction of the threshold to be either less that or greater than, as appropriate.

Boosting for face detection For each round of boosting: Evaluate each rectangle filter on each example Select best threshold for each filter Select best filter/threshold combination as weak learner 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 Receiver operating characteristic (ROC) curve Not good enough! (FP rate too high) Recall that to avoid having a false positive in every image, our false positive rate has to be less than 10-6

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

Attentional cascade Cascading classifiers solves several problems: Improves speed by early rejection of nonface regions by simple classifiers Reduces false positive rates IMAGE SUB-WINDOW Classifier 1 T Classifier 2 T Classifier 3 T FACE F F F NON-FACE NON-FACE NON-FACE

Attentional cascade Chain classifiers that are progressively more complex and have lower false positive rates: % Detection Receiver operating characteristic 0 100 % 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)

Output of Face Detector on Test Images

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

Profile Detection

Profile Features

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