Skip to content

Rapid Object Detection Using a Boosted Cascade of Simple Features

Authors: Paul Viola, Michael Jones

Published: 2001 (Conference Paper)

Source: Proceedings of the 2001 IEEE Computer Society Conference on Computer Vision and Pattern Recognition

Algorithm: Viola-Jones Detector

DOI: 10.1109/CVPR.2001.990517

Summary

Introduces the Viola-Jones real-time face detector with three key contributions: the integral image for O(1) Haar-like feature computation, AdaBoost for selecting a small discriminative feature set, and a cascaded classifier that rapidly rejects background regions. Ran at 15 fps and was the dominant face detection algorithm for a decade.

Abstract

This paper describes a machine learning approach for visual object detection which is capable of processing images extremely rapidly and achieving high detection rates. This work is distinguished by three key contributions. The first is the introduction of a new image representation called the "integral image" which allows the features used by our detector to be computed very quickly. The second is a learning algorithm, based on AdaBoost, which selects a small number of critical visual features from a larger set and yields extremely efficient classifiers. The third contribution is a method for combining increasingly more complex classifiers in a "cascade" which allows background regions of the image to be quickly discarded while spending more computation on promising object-like regions. The cascade can be viewed as an object specific focus-of-attention mechanism which unlike previous approaches provides statistical guarantees that discarded regions are unlikely to contain the object of interest. In the domain of face detection the system yields detection rates comparable to the best previous systems. Used in real-time applications, the detector runs at 15 frames per second without resorting to image differencing or skin color detection.

Tags

  • object detection

  • face detection

  • AdaBoost

  • integral image

  • cascade classifier

  • computer vision

  • real-time