1 / 48

Face recognition: component-based versus global approaches

Face recognition: component-based versus global approaches. 指導老師 : 萬書言 老師 報告學生 : 何炳杰 報告日期 : 2010/10/08. 論文出處. Computer Vision and Image Understanding Volume 91, Issues 1-2 , July-August 2003, Pages 6-21 Special Issue on Face Recognition Authors :

minowa
Download Presentation

Face recognition: component-based versus global approaches

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Face recognition: component-based versus global approaches 指導老師: 萬書言 老師 報告學生: 何炳杰 報告日期:2010/10/08

  2. 論文出處 • Computer Vision and Image UnderstandingVolume 91, Issues 1-2, July-August 2003, Pages 6-21Special Issue on Face Recognition • Authors : Honda Research Institute US, 145 Tremont St., Boston, MA 02111, USA Center for Biological and Computational Learning, M.I.T., Cambridge, MA, USA Hewlett-Packard, Cambridge, MA, USA • Received 15 February 2002;accepted 11 February 2003. ; Available online 17 July 2003. 

  3. Abstract • 在這篇文章中,作者分別呈現局部(component-based method)與整臉(global method)方式的人臉辨識,並評估這兩種呈現方式的系統的穩定性(針對人臉的位置轉動部分)。 Component system: 1 2 3 Locatefacialcomponents. Extractthem. Combinethemintoasinglefeaturevector. Train a single SVM classifier for each person in the database. The 1st Sys. The two global system: The 2nd Sys. Consists of sets of view-specific SVM classifier and involves clustering during training.

  4. 1. Introduction Focusing on the aspect of pose invariance. • (i) global approach (ii) component-based approach • (I) Global Approach:

  5. 1. Introduction-Global approach • Global approach方法的限制: Global techniques are not robust against pose changes since global features are highly sensitive to translation and rotation of the face. • Solutions: An alignment stage can be added before classifying the face. Aligning an input face image with a reference frontal face image requires computing correspondences between the two face images.

  6. 1. Introduction-Global approach (cont.) • Solutions: correspondents: A small number of prominent points in the face like the center of the eye, the nostrils, or the corners of the mouth. center of eye • the nostrils the corners of the mouth

  7. 1. Introduction • (II) Component-Based Approach:

  8. 1. Introduction - Component-Based Approach • The main idea of component-based recognition is to compensate for pose changes by allowing a flexible geometrical relation between the components in the classification stage. • A component-based approach is to classify local facial components. ( eyes, nose, mouth... )

  9. 1. Introduction-global methods • We present two global approach and a component-based approach to face recognition and evaluate their robustness against pose changes. • The first global method: Astraightforward face detector which extracts the face from an input image. • The second global method: Split the images of each person into view-specific clusters. We then train view-specific SVM classifiers on each single cluster.

  10. 1. Introduction- component-based methods • The component-based system: Use a face detector that detects and extracts local components of the face. The detector consists of a set of SVM classifiers that locate learned facial components and a single geometrical classifier that checks if the configuration of the components matches a learned geometrical face model. • 示意圖: A set of SVM classifiers. image image Face detector image Training(學習階段)

  11. 1. Introduction • The outline of the paper is as follows: • Section 2: Give a brief overview on SVM learning and strategies for multi-class classification with SVMs. • Section 3: Describe the two global methods for face recognition. • Section 4: It’sabout the component-based system. • Section 5: Contain experimental results and a comparison between the global and component systems. • Section 6: Concludes the paper and suggests future work.

  12. 2.1. Binary classification • SVMs belong to the class of maximum margin classifiers. • They perform pattern recognition between two class by finding a decision surface that has maximum distance to the closest points in the training set which are termed support vectors. • 示意圖: 出處: C. Cortes, V. Vapnik, Support vector networks, Mach. Learning 20 (1995) 1–25.

  13. 2.1. Binary classification-linearclassification • 參數部分: • :Atraining set of points where each points belongs to one of two classes identified the label - and : They are the solutions of a quadratic programming problem. - Goal:Separate the two classes by a hyperplane such the distance to the support vectors is maximized. OSH(Optimal Separating Hyperplane )

  14. 2.1. Binary classification-linearclassification • 功用:Perform multi-class classification. • : The sign of is the classification result for , and is the distance from to the hyperplane. • The larger , the more reliable the classification result.

  15. 2.1. Binary classification-non-linearclassification linear classification • 的由來: • Each point x in the input space is mapped to a pointof a higher dimensional space, called the feature space, where the data are separated by ahyperplane. • : 由數學中的內積所衍生出的性質。 non-linear classification

  16. 2.1. Binary classification-non-linearclassification • : It is subject to the condition that the dot product of two points in the feature space 。 • Featurespace: • Each point x in the input space is mapped to a point of a higher dimensional space, called the feature space. f2 f1 f3 f2 f1

  17. 2.1. Binary classification-non-linearclassification • An important family of kernel functions is the polynomial kernel - :The degree of the polynomial.

  18. 2.2. Multi-class classification • One-vs-all approach(一對多-SVM分類方法) • Pairwise approach(成對的SVM分類方法) • One-vs-all approach(一對多-SVM分類方法): 原則: 取大(取正號) C3 class1 C1 class2 class3 C2 出處:http://www.powercam.cc/slide/6556

  19. 2.2. Multi-class classification • Pairwise approach(成對的SVM分類方法) bottom-upcomparison 出處:G. Guodong, S. Li, C. Kapluk, Face recognition by support vector machines, in: Proc. IEEE Int. Conf. on Automatic Face and Gesture Recognition, 2000, pp. 196–201.

  20. 2.2. Multi-class classification • Pairwise approach(成對的SVM分類方法) top-downcomparison 出處:J. Platt, N. Cristianini, J. Shawe-Taylor, Large margin dags for multiclass classification, Adv. Neural Inform. Process. Systems

  21. 2.2. Multi-class classification • A more recent comparison between several multi-class techniques [20] favors the one-vs-all approach because of its simplicity and excellent classification performance. 出處: R. Rifkin, Everything old is new again: a fresh look at historical approaches in machine learning, Ph.D. thesis, M.I.T., 2002.

  22. 3. Global approach • System process: Face Face recognition Extract the face from an input image. image image Face detector image

  23. 3.1. Face detection - Global approach • In order to detect faces at different scales we first computed a resolution pyramid for the input image and then shifted a 58*58 window over each image in the pyramid. ※金字塔架構 (pyramid structure) 出處:http:// www.cs.pu.edu.tw/~ychu/class981/DataComp/15-HierarchicalCoding.PPT

  24. 3.1. Face detection - Global approach

  25. 3.1. Face detection - Global approach • The training data for the face detector was generated by rendering seven textured3-D head models [29]. • The heads were rotated between and in depth andilluminated by ambient light and a single directional light pointing towards the center of the face. 出處:A morphable model for synthesis of 3D faces, in: Comput. Graphics Proc. SIGGRAPH, Los Angeles, 1999, pp. 187–194.

  26. 3.1. Face detection - Global approach • Sample size: - We generated 2457 face images of size 58*58 pixels, some examples are shown in Fig. 2. - The negative training set initially consisted of 10,209 58*58 non-face patterns randomly extracted from 502 non-face images.

  27. 3.2. Recognition - Global approach • We implemented two global recognition systems. • Both systems were based on the one-vs-all strategy for SVM multi-class classification described in the previous section. • The first system: Use a linear SVM for every person in the database. Each SVM was trained to distinguish between all images of a single person ( labeled +1 ) and all other images in the training set (labeled -1 ). C3 class1 C1 class2 class3 C2

  28. 3.2. Recognition - Global approach • For both training and testing we first ran the face detector on the input image to extract the face. • Re-scale: • We re-scaled the face image to 40*40 pixels and converted the gray values into a feature vector. • Given a set of q people and a set of q SVMs, each one associated to one person, the class label y of a face pattern x is computed as follows:

  29. 3.2. Recognition - Global approach • Formulas: • : It is computed according to Eq. (2) for the SVM trained to recognize person . • : The classification threshold. • The class label 0 stands for rejection. t

  30. 3.2. Recognition - Global approach • 潛在的問題與限制: • Changes in the head pose lead to strong variations in the images of a person’s face. • These in-class variations complicate the recognition task.

  31. 3.2. Recognition - Global approach • 解決方案: • For this reason, we developed a second method in which we split the training images of each person into clusters by a divisive cluster technique . • The cluster with thehighest variance is split into two by a hyperplane. • N: The number of faces in the cluster.

  32. 3.2. Recognition - Global approach • 解決方案: • The face with the minimum distance to all other faces in the same cluster is chosen to be the average face of the cluster. average face average face cluster cluster

  33. 4. Component-based approach • System process: Face Face recognition Detect facial components. image image Face detector image

  34. 4.1. Detection • We implemented a two-level, component-based face detector.

  35. 4.1. Detection • The 14 facial components used in the detection system areshown in Fig. 5a, their dimensions are given in Table 1. The shapes and positions of the components have been automatically determined from the training data. Fig. 5. (a) The 14 components of our face detector. The centers of the components are marked by a whitecross.

  36. 4.1. Detection • Table 1: • We trained 14 linear SVMs on the component data and applied them to the whole training set in order to generate the training data for the geometrical classifier.

  37. 4.1. Detection • In a final step: We trained the geometrical classifier, which was again a linear SVM, on the X–Y locations and continuous outputs of the 14 component classifiers.

  38. 4.1. Detection • 缺點: • The component-based face detector was computationally more expensive than the global face detector. • This was because the combined size of the 14 components wasabout 1.12 times the size of the face region used in the global detector. • In addition,we had to locate the maxima of the responses of the component classifiers and compute the output of the geometrical classifier. - In average, the component-based detector was about 1.2 times slower than the global detector.

  39. 4.2. Recognition • System process: • Step 1: First ran the component-based detector over eachimage in the training set. • Step 2: Extracted the components. • From the 14 original components we kept 10 for face recognition. • 篩選條件: - Removing those that either contained few gray value structures (e.g., cheeks) or strongly overlapped with other components.

  40. 4.2. Recognition • The 10 selected components are shown in Fig. 5b. The 10 components that were used for face recognition are shown in (b).

  41. 4.2. Recognition • Examples of the component-basedface detector applied to images of the training set are shown in Fig. 6.

  42. 5. Experiments • Training set: • 10,000 gray face images of 10 subjects from which about 1400 were frontal views. • The resolution of the face images ranged: 80*80 ~ 130*130 pixels. ( with rotations in azimuth up to about+- ) • Testing stage: • 1154 images of all 10 subjects in the database. • The rotation in depth was again up to about +- .

  43. 5. Experiments • We trained four different recognition systems on the 10,000 images: (1) Global system using one linear SVM classifier per person. (2) Global system using one second-degree polynomial SVM per person. (3) Global system with one linear SVM for each cluster. (4) Component-based approach with one linear SVM classifier per person.

  44. 5. Experiments • The ROC curves for the four systems are shown in Fig. 7.

  45. 5. Experiments • Some examples of misclassifications caused by false detections are shown in Figs. 8 and 9.

  46. 6. Conclusion and future work • We presented a component-based technique and two global techniques for face recognition and evaluated their performance with respect to robustness against pose changes. • The component-based system: • It detected and extracted a set of 10 facial components and arranged them in a single feature vector that was classified by linear SVMs. • Both global systems: - we detected the whole face, extracted it from the image, and used it as input to the classifiers.

  47. 6. Conclusion and future work • In the experiment the component-based system outperformed the global systems even though we used more powerful classifiers (i.e., non-linear instead of linear SVMs) for the global system. • 研究限制( the current component-based classifier ): • The current component-based classifier cannot deal with the full range of poses (from frontal to profile views). • 解決方案: • It will be necessary to train view-specific component classifiers, e.g., two mouth classifiers trained on frontal and profile views, respectively.

  48. Thank You!

More Related