亚洲国产爱久久全部精品_日韩有码在线播放_国产欧美在线观看_中文字幕不卡在线观看

Jump to content

Viola–Jones object detection framework

From Wikipedia, the free encyclopedia

The Viola–Jones object detection framework is a machine learning object detection framework proposed in 2001 by Paul Viola and Michael Jones.[1][2] It was motivated primarily by the problem of face detection, although it can be adapted to the detection of other object classes.

In short, it consists of a sequence of classifiers. Each classifier is a single perceptron with several binary masks (Haar features). To detect faces in an image, a sliding window is computed over the image. For each image, the classifiers are applied. If at any point, a classifier outputs "no face detected", then the window is considered to contain no face. Otherwise, if all classifiers output "face detected", then the window is considered to contain a face.

The algorithm is efficient for its time, able to detect faces in 384 by 288 pixel images at 15 frames per second on a conventional 700 MHz Intel Pentium III. It is also robust, achieving high precision and recall.

While it has lower accuracy than more modern methods such as convolutional neural network, its efficiency and compact size (only around 50k parameters, compared to millions of parameters for typical CNN like DeepFace) means it is still used in cases with limited computational power. For example, in the original paper,[1] they reported that this face detector could run on the Compaq iPAQ at 2 fps (this device has a low power StrongARM without floating point hardware).

Problem description

[edit]

Face detection is a binary classification problem combined with a localization problem: given a picture, decide whether it contains faces, and construct bounding boxes for the faces.

To make the task more manageable, the Viola–Jones algorithm only detects full view (no occlusion), frontal (no head-turning), upright (no rotation), well-lit, full-sized (occupying most of the frame) faces in fixed-resolution images.

The restrictions are not as severe as they appear, as one can normalize the picture to bring it closer to the requirements for Viola-Jones.

  • any image can be scaled to a fixed resolution
  • for a general picture with a face of unknown size and orientation, one can perform blob detection to discover potential faces, then scale and rotate them into the upright, full-sized position.
  • the brightness of the image can be corrected by white balancing.
  • the bounding boxes can be found by sliding a window across the entire picture, and marking down every window that contains a face.
    • This would generally detect the same face multiple times, for which duplication removal methods, such as non-maximal suppression, can be used.

The "frontal" requirement is non-negotiable, as there is no simple transformation on the image that can turn a face from a side view to a frontal view. However, one can train multiple Viola-Jones classifiers, one for each angle: one for frontal view, one for 3/4 view, one for profile view, a few more for the angles in-between them. Then one can at run time execute all these classifiers in parallel to detect faces at different view angles.

The "full-view" requirement is also non-negotiable, and cannot be simply dealt with by training more Viola-Jones classifiers, since there are too many possible ways to occlude a face.

Components of the framework

[edit]

A full presentation of the algorithm is in.[3]

Consider an image of fixed resolution . Our task is to make a binary decision: whether it is a photo of a standardized face (frontal, well-lit, etc) or not.

Viola–Jones is essentially a boosted feature learning algorithm, trained by running a modified AdaBoost algorithm on Haar feature classifiers to find a sequence of classifiers . Haar feature classifiers are crude, but allows very fast computation, and the modified AdaBoost constructs a strong classifier out of many weak ones.

At run time, a given image is tested on sequentially. If at any point, , the algorithm immediately returns "no face detected". If all classifiers return 1, then the algorithm returns "face detected". For this reason, the Viola-Jones classifier is also called "Haar cascade classifier".

Haar feature classifiers

[edit]

Consider a perceptron defined by two variables . It takes in an image of fixed resolution, and returns

Example rectangle features shown relative to the enclosing detection window

A Haar feature classifier is a perceptron with a very special kind of that makes it extremely cheap to calculate. Namely, if we write out the matrix , we find that it takes only three possible values , and if we color the matrix with white on , black on , and transparent on , the matrix is in one of the 5 possible patterns shown on the right.

Each pattern must also be symmetric to x-reflection and y-reflection (ignoring the color change), so for example, for the horizontal white-black feature, the two rectangles must be of the same width. For the vertical white-black-white feature, the white rectangles must be of the same height, but there is no restriction on the black rectangle's height.

Haar Feature that looks similar to the bridge of the nose is applied onto the face
Haar Feature that looks similar to the eye region which is darker than the upper cheeks is applied onto a face

Rationale for Haar features

[edit]

The Haar features used in the Viola-Jones algorithm are a subset of the more general Haar basis functions, which have been used previously in the realm of image-based object detection.[4]

While crude compared to alternatives such as steerable filters, Haar features are sufficiently complex to match features of typical human faces. For example:

  • The eye region is darker than the upper-cheeks.
  • The nose bridge region is brighter than the eyes.

Composition of properties forming matchable facial features:

  • Location and size: eyes, mouth, bridge of nose
  • Value: oriented gradients of pixel intensities

Further, the design of Haar features allows for efficient computation of using only constant number of additions and subtractions, regardless of the size of the rectangular features, using the summed-area table.

Learning and using a Viola–Jones classifier

[edit]

Choose a resolution for the images to be classified. In the original paper, they recommended .

Learning

[edit]

Collect a training set, with some containing faces, and others not containing faces. Perform a certain modified AdaBoost training on the set of all Haar feature classifiers of dimension , until a desired level of precision and recall is reached. The modified AdaBoost algorithm would output a sequence of Haar feature classifiers .

The details of the modified AdaBoost algorithm is detailed below.

Using

[edit]

To use a Viola-Jones classifier with on an image , compute sequentially. If at any point, , the algorithm immediately returns "no face detected". If all classifiers return 1, then the algorithm returns "face detected".

Learning algorithm

[edit]

The speed with which features may be evaluated does not adequately compensate for their number, however. For example, in a standard 24x24 pixel sub-window, there are a total of M = 162336[5] possible features, and it would be prohibitively expensive to evaluate them all when testing an image. Thus, the object detection framework employs a variant of the learning algorithm AdaBoost to both select the best features and to train classifiers that use them. This algorithm constructs a "strong" classifier as a linear combination of weighted simple “weak” classifiers.

Each weak classifier is a threshold function based on the feature .

The threshold value and the polarity are determined in the training, as well as the coefficients .

Here a simplified version of the learning algorithm is reported:[6]

Input: Set of N positive and negative training images with their labels . If image i is a face , if not .

  1. Initialization: assign a weight to each image i.
  2. For each feature with
    1. Renormalize the weights such that they sum to one.
    2. Apply the feature to each image in the training set, then find the optimal threshold and polarity that minimizes the weighted classification error. That is where
    3. Assign a weight to that is inversely proportional to the error rate. In this way best classifiers are considered more.
    4. The weights for the next iteration, i.e. , are reduced for the images i that were correctly classified.
  3. Set the final classifier to

Cascade architecture

[edit]
  • On average only 0.01% of all sub-windows are positive (faces)
  • Equal computation time is spent on all sub-windows
  • Must spend most time only on potentially positive sub-windows.
  • A simple 2-feature classifier can achieve almost 100% detection rate with 50% FP rate.
  • That classifier can act as a 1st layer of a series to filter out most negative windows
  • 2nd layer with 10 features can tackle “harder” negative-windows which survived the 1st layer, and so on...
  • A cascade of gradually more complex classifiers achieves even better detection rates. The evaluation of the strong classifiers generated by the learning process can be done quickly, but it isn't fast enough to run in real-time. For this reason, the strong classifiers are arranged in a cascade in order of complexity, where each successive classifier is trained only on those selected samples which pass through the preceding classifiers. If at any stage in the cascade a classifier rejects the sub-window under inspection, no further processing is performed and continue on searching the next sub-window. The cascade therefore has the form of a degenerate tree. In the case of faces, the first classifier in the cascade – called the attentional operator – uses only two features to achieve a false negative rate of approximately 0% and a false positive rate of 40%.[7] The effect of this single classifier is to reduce by roughly half the number of times the entire cascade is evaluated.

In cascading, each stage consists of a strong classifier. So all the features are grouped into several stages where each stage has certain number of features.

The job of each stage is to determine whether a given sub-window is definitely not a face or may be a face. A given sub-window is immediately discarded as not a face if it fails in any of the stages.

A simple framework for cascade training is given below:

  • f = the maximum acceptable false positive rate per layer.
  • d = the minimum acceptable detection rate per layer.
  • Ftarget = target overall false positive rate.
  • P = set of positive examples.
  • N = set of negative examples.
F(0) = 1.0; D(0) = 1.0; i = 0

while F(i) > Ftarget
    increase i
    n(i) = 0; F(i)= F(i-1)

    while F(i) > f × F(i-1)
        increase n(i)
        use P and N to train a classifier with n(i) features using AdaBoost
        Evaluate current cascaded classifier on validation set to determine F(i) and D(i)
        decrease threshold for the ith classifier (i.e. how many weak classifiers need to accept for strong classifier to accept)
            until the current cascaded classifier has a detection rate of at least d × D(i-1) (this also affects F(i))
    N = ?
    if F(i) > Ftarget then 
        evaluate the current cascaded detector on the set of non-face images 
        and put any false detections into the set N.

The cascade architecture has interesting implications for the performance of the individual classifiers. Because the activation of each classifier depends entirely on the behavior of its predecessor, the false positive rate for an entire cascade is:

Similarly, the detection rate is:

Thus, to match the false positive rates typically achieved by other detectors, each classifier can get away with having surprisingly poor performance. For example, for a 32-stage cascade to achieve a false positive rate of 10?6, each classifier need only achieve a false positive rate of about 65%. At the same time, however, each classifier needs to be exceptionally capable if it is to achieve adequate detection rates. For example, to achieve a detection rate of about 90%, each classifier in the aforementioned cascade needs to achieve a detection rate of approximately 99.7%.[8]

Using Viola–Jones for object tracking

[edit]

In videos of moving objects, one need not apply object detection to each frame. Instead, one can use tracking algorithms like the KLT algorithm to detect salient features within the detection bounding boxes and track their movement between frames. Not only does this improve tracking speed by removing the need to re-detect objects in each frame, but it improves the robustness as well, as the salient features are more resilient than the Viola-Jones detection framework to rotation and photometric changes.[9]

References

[edit]
  1. ^ a b Viola, P.; Jones, M. (2001). . Proceedings of the 2001 IEEE Computer Society Conference on Computer Vision and Pattern Recognition. CVPR 2001. Vol. 1. IEEE Comput. Soc. doi:10.1109/cvpr.2001.990517. ISBN 0-7695-1272-0. S2CID 2715202.
  2. ^ Viola, Paul; Jones, Michael J. (May 2004). . International Journal of Computer Vision. 57 (2): 137–154. doi:10.1023/b:visi.0000013087.49260.fb. ISSN 0920-5691. S2CID 2796017.
  3. ^ Wang, Yi-Qing (2014-06-26). . Image Processing on Line. 4: 128–148. doi:10.5201/ipol.2014.104. ISSN 2105-1232.
  4. ^ C. Papageorgiou, M. Oren and T. Poggio. A General Framework for Object Detection. International Conference on Computer Vision, 1998
  5. ^ . stackoverflow.com. Retrieved 2017-06-27.
  6. ^ R. Szeliski, Computer Vision, algorithms and applications, Springer
  7. ^ Viola, Jones: Robust Real-time Object Detection, IJCV 2001 See page 11.
  8. ^ Torbert, Shane (2016). Applied Computer Science (2nd ed.). Springer. pp. 122–131.
  9. ^ . Archived from the original on 2020-08-03. Retrieved 2014-12-18.
[edit]

Implementations

[edit]
Retrieved from "
亚洲国产爱久久全部精品_日韩有码在线播放_国产欧美在线观看_中文字幕不卡在线观看

    
    

    9000px;">

      
      

      麻豆精品精品国产自在97香蕉| 日韩一区二区视频| 国产69精品一区二区亚洲孕妇| 高清不卡在线观看| 日本高清不卡在线观看| 欧美成人性福生活免费看| 国产精品国产a级| 美美哒免费高清在线观看视频一区二区 | 亚洲日本一区二区| 日韩av网站免费在线| 成人小视频免费在线观看| 在线不卡a资源高清| 中文字幕一区二区三区在线不卡 | 精一区二区三区| 色综合久久综合| 国产无人区一区二区三区| 亚欧色一区w666天堂| 97久久精品人人做人人爽| 欧美xxx久久| 免费观看30秒视频久久| 亚洲欧美日韩国产中文在线| 久久精品999| 制服丝袜日韩国产| 亚洲电影欧美电影有声小说| 91在线视频免费91| 国产精品国产自产拍在线| 激情都市一区二区| 日韩免费电影一区| 天堂在线亚洲视频| 欧美午夜精品久久久| 亚洲视频一区在线观看| 国产成人免费网站| 国产亚洲欧美日韩日本| 91福利精品视频| eeuss国产一区二区三区| 精品国产精品一区二区夜夜嗨| 日本成人在线看| 911精品国产一区二区在线| 亚洲一区二区综合| 91蜜桃在线观看| 欧美性淫爽ww久久久久无| 亚洲欧美区自拍先锋| 成人国产精品免费网站| 国产精品私房写真福利视频| 东方aⅴ免费观看久久av| 日本一区二区视频在线观看| 国产成人av一区二区三区在线| 久久免费看少妇高潮| 国产成人综合亚洲网站| 国产精品久久久久久妇女6080| 成a人片亚洲日本久久| 色综合天天综合网天天狠天天 | 成人美女在线观看| 国产精品久久久久三级| 成人小视频在线| 亚洲欧美激情插| 欧美日韩精品一区二区| 首页国产欧美日韩丝袜| 欧美草草影院在线视频| 国产传媒久久文化传媒| 亚洲欧美区自拍先锋| 在线观看亚洲精品视频| 天堂久久一区二区三区| 久久久精品影视| 成人av电影在线播放| 一区二区三区免费| 91麻豆精品国产自产在线观看一区| 麻豆91在线看| 国产精品网站一区| 欧美日韩一卡二卡| 精品一二三四在线| 亚洲美女在线国产| 欧美一级欧美三级在线观看| 国产精品69久久久久水密桃| 亚洲精品免费播放| 精品国产一区久久| www.欧美日韩| 美腿丝袜亚洲色图| 中文字幕一区二区三区四区| 久久99国产精品免费| 久久精品亚洲乱码伦伦中文| 日本一区二区成人| 天天av天天翘天天综合网色鬼国产| 日韩区在线观看| 国产精品网曝门| 欧美麻豆精品久久久久久| 国产精品影视在线观看| 一区二区三区成人在线视频| 中文字幕在线一区| 欧美三级三级三级爽爽爽| 九九精品一区二区| 亚洲欧美日韩国产综合| 欧美mv日韩mv国产网站app| 91丨porny丨首页| 国产精品一区久久久久| 日韩制服丝袜先锋影音| 国产精品福利一区二区| 精品美女在线观看| 精品视频在线视频| 91色婷婷久久久久合中文| 紧缚奴在线一区二区三区| 亚洲电影视频在线| 国产精品福利影院| 中文字幕欧美日韩一区| 日韩精品一区二区三区swag| 欧美午夜一区二区| 91天堂素人约啪| 成人一级黄色片| 国产精品88av| 国产一区美女在线| 日本不卡123| 亚洲va天堂va国产va久| 樱桃国产成人精品视频| 国产精品视频线看| 国产欧美精品在线观看| 国产午夜精品一区二区三区嫩草| 日韩一本二本av| 欧美一区二区三区人| 色婷婷久久99综合精品jk白丝| 成人精品高清在线| 东方欧美亚洲色图在线| 国产成人精品亚洲日本在线桃色 | 欧美性色aⅴ视频一区日韩精品| 99免费精品在线| 成人av先锋影音| 99re这里只有精品视频首页| 波多野结衣欧美| 91视频免费播放| 日本高清不卡视频| 在线观看一区日韩| 欧美日韩一区高清| 欧美日韩免费在线视频| 欧美人与禽zozo性伦| 欧美日韩国产大片| 欧美一级精品在线| 精品三级av在线| 中文字幕av不卡| 亚洲人成人一区二区在线观看 | 色综合夜色一区| 欧美自拍丝袜亚洲| 717成人午夜免费福利电影| 欧美疯狂性受xxxxx喷水图片| 777午夜精品免费视频| 日韩精品一区国产麻豆| 久久九九99视频| 国产精品私人自拍| 亚洲一区在线免费观看| 日韩激情视频在线观看| 激情成人综合网| 成人av手机在线观看| 在线观看欧美日本| 亚洲国产电影在线观看| 亚洲一区在线视频| 韩国理伦片一区二区三区在线播放| 国产激情视频一区二区在线观看| 99免费精品在线观看| 欧美美女喷水视频| 久久精品亚洲国产奇米99| 国产精品对白交换视频| 五月婷婷激情综合| 精品一区二区三区不卡| 99精品视频在线播放观看| 欧美日韩国产精品成人| 欧美精品一区二区三区视频| 亚洲区小说区图片区qvod| 奇米精品一区二区三区在线观看| 国产 欧美在线| 欧美一区二区三区视频免费播放| 久久久蜜桃精品| 午夜精品视频一区| 高清不卡一区二区| 欧美一区二区三区日韩视频| 亚洲欧洲精品一区二区精品久久久| 午夜视频在线观看一区| 国产99精品国产| 日韩欧美精品在线| 亚洲精品国产精华液| 国产精华液一区二区三区| 欧美日韩在线精品一区二区三区激情 | 99视频国产精品| 欧美一区二区三区视频在线| 亚洲色图.com| 成人午夜在线视频| 日韩一区二区三区免费观看| 亚洲免费av在线| 福利91精品一区二区三区| 欧美日精品一区视频| 国产精品久久久久四虎| 精品一区二区三区免费| 欧美人体做爰大胆视频| 国产精品久久久久久久久免费丝袜| 久久精品国产77777蜜臀| 欧美日韩一级片网站| 亚洲免费在线视频一区 二区| 国产乱子轮精品视频| 51午夜精品国产| 午夜精品久久久| 欧美视频你懂的| 亚洲人吸女人奶水| 成人高清视频免费观看|