Local Binary LDA for Face Recognition

Size: px
Start display at page:

Download "Local Binary LDA for Face Recognition"

Transcription

1 Local Binary LDA for Face Recognition Ivan Fratric 1, Slobodan Ribaric 1 1 Faculty of Electrical Engineering and Computing, University of Zagreb, Unska 3, Zagreb, Croatia {ivan.fratric, slobodan.ribaric}@fer.hr Abstract. Extracting discriminatory features from images is a crucial task for biometric recognition. For this reason, we have developed a new method for the extraction of features from images that we have called local binary linear discriminant analysis (LBLDA), which combines the good characteristics of both LDA and local feature extraction methods. We demonstrated that binarizing the feature vector obtained by LBLDA significantly improves the recognition accuracy. The experimental results demonstrate the feasibility of the method for face recognition as follows: on XM2VTS face image database, a recognition accuracy of 96.44% is obtained using LBLDA, which is an improvement over LDA (94.41%). LBLDA can also outperform LDA in terms of computation speed. Keywords: Biometrics, Face recognition, Linear discriminant analysis, Local features 1 Introduction Biometrics is an emerging technology [1, 2] that is used to identify people by their physical and/or behavioral characteristics. The face is a biometric characteristic that contains a variety of features that are suitable for biometric recognition. However, extracting these discriminatory features from face images is a difficult task. The extracted features must provide good recognition accuracy and be robust to intra-class variations, which is a major problem due to variations in the position of the face, facial expressions, lighting, appearance caused by aging, etc. The most popular group of feature extraction methods for face recognition are the appearance-based methods, such as PCA [3] and LDA [4]. These methods observe entire images as a feature vector and then apply transformations that optimize some criterion function. Principal component analysis (PCA) finds the optimal transformation for the image representation; however, this transformation is not necessarily optimal for recognition, which is why linear discriminant analysis (LDA) usually gives better recognition accuracy. LDA finds a linear transformation that, when applied to a set of images, maximizes the between-class variance, while at the same time minimizing the within-class variance. Various modifications to the basic LDA approach have been proposed [5, 6, 7, 8].

2 Pentland et al. [9] used PCA to extract local features from rectangular patches placed on salient facial features: eyes, nose and mouth. Recently, even more attention has been given to local features, most notably the features extracted using a Gabor filter [10] and local binary patterns [11]. Local features are lighting-invariant and can give a better recognition accuracy than global features, such as those extracted using appearance-based approaches. Several approaches combine different local features or both local and global features for face recognition. Méndez-Vázquez et al. [12] combine local binary patterns and local discrete cosine transform (DCT) for face recognition. They first discard low-frequency DCT coefficients as a preprocessing step, and than apply local binary patterns to represent the facial features. Pan and Cao [13] combine local features obtained by applying 2D non-negative matrix factorization (NMF) in 2D DCT domain with the global features obtained by 2D PCA. We propose a new feature extraction method called local binary linear discriminant analysis (LBLDA) that combines the good characteristics of both appearance-based methods and methods based on local features. The general idea is to use LDA to locate and extract the discriminant local features. The images are divided into a set of possibly overlapping regions and then LDA is performed using the data for each region separately. In this way, we can extract the optimal local features in terms of the LDA criterion function. Based on this criterion function, we can also extract more features from the regions in the image that contain more discriminatory information. We take only the sign of the features and discard the magnitude in order to obtain a binary feature vector. Although it may appear that we are losing important discriminatory information by doing this, we demonstrate experimentally that using binary features significantly increases the recognition accuracy. There are several benefits of using binary features. In a recent paper, Sun and Tan [14] present several of the benefits of using ordinal measures for feature representation, but these benefits hold for binary features as well: (i) High-level measurements (i.e., measurements expressed as exact values) are sensitive to illumination changes, blur, noise, deformation, and other image degradations. Fine models of visual objects based on high-level measurements are useful for image detail preservation and image reconstruction, but are unnecessary for object recognition. (ii) Binary features are more compact and faster to process due to the simpler computations. (iii) Binary features are biologically plausible. For example, DeAngelis et al. [15] found that many striate cortical neurons visual responses saturate rapidly with the magnitude of the contrast as the input. This indicates that the determining factor of visual perception is not the absolute value of the contrast, but its polarity. The rest of the paper is organized as follows. In Section 2 we give a detailed description of the proposed method. In Section 3 we describe experiments that demonstrate the feasibility of the method for face recognition. The conclusions and suggestions for future work are given in Section 4.

3 2 LDA and LBLDA LDA, as commonly used in image-based biometrics [4, 16], involves using the information from the entire image. All the images in the training set are treated as n- dimensional vectors x i, i = 1, 2,, N, where N is the number of training images and n is the number of pixels in an image. LDA finds a transformation W LDA that transforms the original image vectors into a new space in which the between-class variance is maximized, while the within-class variance is minimized. LDA maximizes the criterion function T W S BW J ( W) (1) T W S W where S B is the between-class variance matrix and S W is the within-class variance matrix: W S S C B N i i 1 W N N C i 1 x i ( m i m)( m m) ( x m )( x m ) i i i T T (2) where N i is the number of samples in class ω i, m i is the mean sample of class ω i and m is the mean of all the samples. The solutions of the optimization problem (eq. 1) are the vectors w j, obtained as a solution of the generalized eigenvector problem j S W w j = S B w j, that correspond to the largest generalized eigenvalues λ j. The maximum dimensionality of the LDA space is C 1, where C is the number of classes. One problem that often arises with LDA in biometrics is that of the small sample size: if N < n C, the within-class scatter matrix S W is singular, and the computation of the LDA subspace becomes impossible by traditional means. The usual way of solving this problem is to first reduce the dimensionality of the training samples by means of PCA [4]. However, other solutions have also been proposed, such as direct LDA [5], regularized LDA [6] or discriminative common vectors [7]. In our approach, we use LDA to extract the local features. First, the image is divided into a set of N R possibly overlapping regions. In our implementation, we use square regions obtained by using a sliding-window approach. A window of size p x p pixels is positioned in the upper-left corner of the image. The first region is composed of all the pixels that fall inside the window. The window is then translated by t p pixels to the right and, when the window falls outside of the image, it is moved t pixels down and all the way to the left of the image. The process is concluded when the bottom-right corner of the window reaches the bottom-right corner of the image. Each window position defines one of the N R regions R r, r = 1, 2,..., N R, where each region consists of p x p pixels.

4 For each region R r and for each training image, we form a vector x r i, i = 1, 2,, N; r = 1, 2,, N R by arranging into a vector all the pixels from the image i that fall into the region R r. The size of each vector x r i is p x p. For each region R r : (i) We perform local PCA on the vectors x i r, i = 1, 2,, N and obtain a subspace W r PCA. We project each of the vectors x i r into this subspace and obtain the vectors z i r. The size of the vectors z i r is N PCA, N PCA min(n-1, p x p). (ii) We perform LDA on the vectors z i r, i = 1, 2,, N. In this process we obtain a subspace W r LDA. (iii) We obtain a final subspace for the region R r, W r PCA+LDA by multiplying the transformation matrices of W r PCA and W r LDA. This subspace is spanned by the local LDA basis vectors w j r, j = 1, 2,, N LDA. N LDA is the subspace dimensionality, N LDA = min(c-1, N PCA ). The size of each vector w j r is p x p. For each vector w j r, we also note the corresponding LDA eigenvalues λ j r, which give information about the goodness of the vector w j r in terms of the LDA criterion function (eq. 1). We now have a set of N LDA x N R vectors w j r and the corresponding eigenvalues λ j r. N LDA x N R can be quite large, for example, for 64x64 images with p = 16 and t = 8 we could obtain up to vectors w j r. In order to select the most discriminatory features, we sort the vectors w j r by the falling values of the LDA eigenvalues λ j r. By taking the first N LBLDA N R x N LDA vectors w j r we form the local feature space. In this way we can take more features from the image locations that are more discriminatory and fewer, or even no features, from the locations that do not contain significant discriminatory information. Finally, we organize the obtained optimal basis into a data structure that we call the local subspace. This local subspace consists of N LBLDA records, where each record contains a region index r and the basis vector w k, where w k is the k-th vector in the sorted sequence of vectors w j r. In the recognition phase, for an unknown image I, we can use this local subspace to extract a N LBLDA -dimensional feature vector y as follows. The image I is divided into N R regions in the same manner as used to obtain the local subspace. The k-th component of this feature vector y k is obtained by computing the scalar product of w k and a (p x p)-dimensional vector obtained by arranging the pixels of region R r of the image I into a vector, where w k and r are components of the k-th record of the local subspace. To obtain a binary feature vector b, we simply take only the signs of the components of y (b k = 1 for y k > 0 and b k = 0 otherwise). This binary feature vector is called a binary live template. The use of binary feature vectors has been shown to significantly increase the recognition accuracy in our experiments. By taking only the signs of the components of the feature vector y we in fact use only information about whether the correlation between the pixels of the region R r and the local LDA basis w k is positive or negative, while disregarding the exact extent of the correlation. An alternate way to view the obtained local features is to observe them as filter responses. Instead of using predefined filters, such as the Gabor filter, these filters are learned on the training data, separate for each image location, so that they emphasize the differences between the classes, while suppressing the within-class variances. We extract the features from each image region using the appropriate filter and take only

5 the binary response, in a similar manner the responses of the Gabor filters are encoded to form the iris code [17] and the palm code [18]. The classification is based on the Hamming distance between the binary live template and the binary templates stored in the database. 3 Experimental evaluation The proposed method was tested on the XM2VTS face image database [19]. The database consists of 2360 images of 295 individuals (8 images per person). The images were taken in four sessions with two images taken per session. Prior to the experiments on this database, all the images were normalized in such a way that the images contain only the face; the person s eyes were always in the same position, all the images were 64x64 pixels in size and a lighting normalization by histogram fitting [20] was performed. Four images of each person (images from the first two sessions) were used for the training, and the remaining four were used for the experiments. Fig. 1 shows several normalized images from the XM2VTS face image database. Fig.1. Several normalized images from the XM2VTS face image database. Images in the same column belong to the same person. The following experiments were performed. Firstly, we show the recognition results of our method on the described datasets for different parameter combinations (Experiment 1). Secondly, we examine the image regions from which the most features are taken by the method and compare the results to the results obtained when the regions of interest are manually placed on the visually salient facial features (Experiment 2). Thirdly, we compare the results of our method to the results obtained by classic LDA on the same databases (Experiment 3) and examine the effect of binarization on the performance of our method (Experiment 4). Finally, we evaluate and compare the computation time requirements of the methods. Experiment 1: Recognition results of our method for different parameter combinations There are four main parameters in our method: (i) p determines the local window width and height in pixels (ii) t determines how many pixels the local window is translated to define the next region. If t = p the regions do not overlap.

6 (iii) (iv) N PCA determines the dimensionality to which local samples are reduced prior to performing LDA. If N PCA = p x p, the reduction of the dimensionality is not necessary. N LDA determines the feature vector length. A series of recognition experiments was performed with different values of these parameters on our test dataset. For each combination of window size p and translation step t we marked the best score together with the corresponding N PCA and feature vector length N LDA. The experiments were performed using the 1-NN classifier with the Hamming distance. The results of the experiment are shown in Table 1. Table 1. Face recognition results for different parameter combinations Window size p Window translation step t N PCA for best recognition accuracy N LBLDA for best recognition accuracy Best recognition accuracy % % % % % % % % % % Several conclusions can be made based on these experiments. Firstly, the recognition results are better for the overlapping than for the non-overlapping regions. When t is decreased to p/2 or p/4 the recognition accuracy is improved as more discriminant features are added. However, in this case the feature vector length increases. In some cases, even better recognition results can be achieved with t = p/8, for example, when p = 16, but this leads to a dramatic increase in the binary feature vector length (for example, from 1500 to 7300; see Table 1). In most cases the best recognition results were achieved with input parameter N PCA = 100 or 150. An increase in N PCA beyond 150 usually results in a decrease of the recognition accuracy. The interpretation of these results is as follows. LDA, like all supervised learning methods, tends to give good results on the training set, but poor results on the unseen data, when given too many degrees of freedom. Often, it is better to limit the size of the vectors that are input into the LDA in order to achieve a better generalization. The optimal window size and the translation step for the database used in the experiments were p = 16 and t = 4. Although we cannot claim that these parameters

7 would also perform best on different databases, they pose a good estimate for the optimal values of the parameters. 3.1 Regions of interest LBLDA takes more features from the image regions that carry more discriminatory information. In this subsection we will show such regions for our database and compare the recognition accuracy to the one obtained using local binary features extracted from patches manually placed on the visually salient facial features. In Fig. 2 we visualize the number of features taken from each image region when LBLDA is learned on the face database. Several images are given, corresponding to the different total number of features (N LBLDA ). The lighter areas correspond to the image regions from which the larger number of features are taken and the black areas correspond to the image regions from which no features are taken. From Fig. 2 it is obvious that the most features are taken from the areas of the eyes, nose, mouth and eyebrows, which is consistent with the human perception of the distinctive features on faces. (a) N LBLDA = 1 N LBLDA = 50 N LBLDA = 100 N LBLDA = 500 N LBLDA = 1000 N LBLDA = 1500 (b) Fig. 2. (a) Mean face image from the database, (b) visualization of the number of features taken from different face image regions. The lighter areas correspond to image regions from which the larger number of features are taken and the black areas to the image regions from which no features are taken. Experiment 2: Comparison of the recognition results based on features extracted from regions that are located by our method and local binary features extracted from manually marked regions We compared the results of our method to the results obtained when local binary features are extracted from patches manually placed on the visually salient facial features. Fig. 3 shows a mean face image from the face database with manually marked overlapping regions of interest. Fig. 4. presents the recognition results of the experiment. The input parameters p = 16, t = 8 and N PCA = 100 are used in LBLDA.

8 It is clear from Fig. 4 that the selection of image regions by our method gives a better recognition accuracy. This suggests that, although the majority of discriminant features are located in the manually marked regions (these regions correspond to the lightest areas in Fig. 2), other areas of the image still contain discriminant features that may significantly improve the recognition accuracy. Fig. 3. mean face image with overlapping regions of interest marked manually 100 Recognition accuracy (%) Number of features Face - LBLDA Face - manual regions Fig. 4. Comparison of recognition results with regions located by our method and manually marked regions. 3.2 Comparison of recognition results of LBLDA and LDA Experiment 3: Comparison of LBLDA and classic LDA. In order to demonstrate the feasibility of our method, the recognition results obtained using LBLDA were compared to the results obtained using features extracted by classic LDA on the same database. We also wanted to test how global features extracted by the LDA perform if they are binarized in a similar way to the local features and the Hamming distance is used

9 to compare them. We will call this method global binary LDA (GBLDA) in the remainder of the text. Recognition experiments with all the feature extraction methods were performed using the 1-NN classifier. A normalized correlation was used as a matching measure for the LDA feature vectors, as it was demonstrated [21] that this performs better than the Euclidean distance. The results are shown in Fig. 5. The figure shows the recognition accuracy depending on the length of the feature vectors. For all the methods the parameters giving the highest recognition accuracy were used. The results show that LBLDA outperforms LDA and GBLDA in terms of recognition accuracy. LBLDA achieves better recognition accuracy with a larger number of features (above 1300), but it is important to note that LBLDA uses binary feature vectors, which are simple to store and process. 100 Accuracy (%) Number of components LDA GBLDA LBLDA Fig. 5. Recognition accuracy of PCA, LDA, GBLDA and LBLDA on the face database depending on the number of features. Experiment 4: Effect of binarization on local LDA and using different distance measures. We made an experiment showing the effect of binarization and different distance measures on the recognition accuracy, with local features extracted using local LDA. Fig. 6 shows the recognition accuracy for our method (LBLDA), and our method without binarization with the Euclidean distance and the normalized correlation for face recognition.

10 Accuracy (%) LBLDA + Hamming distance LBLDA without binarization + Normalized correlation LBLDA without binarization + Euclidean distance Number of features Fig. 6. Comparison of recognition accuracy obtained using the Hamming distance, the normalized correlation (without feature vector binarization) and the Euclidean distance (without feature vector binarization) on the face database, depending on the number of features. From Fig. 6 we can see that using binary features gives the best recognition accuracy, while the normalized correlation gives slightly better results than the Euclidean distance, as is the case with classic LDA. Table 2 gives a summary of the best recognition accuracies for the different feature extraction methods and the distance measures. Table 2. The best recognition accuracies for the different feature extraction methods and the distance measures Features Recognition accuracy LDA + Euclidean distance 90.00% LDA + Normalized correlation 94.41% Global binary LDA (GBLDA) + Hamming distance 82.03% LBLDA + Hamming distance 96.18% LBLDA without binarization + Euclidean distance 90.67% LBLDA without binarization + Normalized correlation 91.86% 3.3 Computation speed There are several steps that need to be performed in a biometric recognition system using LBLDA features. Here, we examine the time cost of each of them separately and compare them to the time cost of the same steps in LDA. Firstly, the transformations need to be learned, which is the most time-consuming task, but this task needs to be performed only once, during the training stage.

11 Secondly, features have to be extracted from the images. This task needs to be performed once per image. Thirdly, there is the time cost of computing the distance between two feature vectors. The number of comparisons depends on the number of feature vectors stored in the database during the enrollment. Table 3 shows the processing time for each of these steps for LDA and LBLDA on the face database. Both LDA and LBLDA were implemented in C++. The experiments were run on an Intel Core 2 Quad processor running at 2.4 GHz, using only a single core. LBLDA not only gives a better recognition accuracy, but, as shown in Table 3, it can also perform faster when compared to LDA. The speed increase in learning and feature extraction is obtained with LBLDA because it does not require computations on as large matrices as LDA does. The speed increase in the distance computation is obtained because the Hamming distance is much simpler to compute using binary operations and lookup tables than the normalized correlation used in the LDA. Table 3. Processing time for LDA and LBLDA on the face database LDA N LDA = 100 LBLDA p = 16, t = 8, N PCA = 100, N LBLDA = 1000 LBLDA p = 16, t = 4, N PCA = 150, N LBLDA = 1500 Learning time 233s 34s 139s Feature extraction time 0.67ms 0.59ms 1.40ms Distance computation time 0.43 s 0.16 s 0.22 s 4 Conclusion Extracting discriminatory features from images is a crucial task for biometric recognition based on the face features. We propose a new method of feature extraction from images, called local binary linear discriminant analysis (LBLDA), which combines the good characteristics of both LDA and local feature extraction methods. LBLDA uses LDA to extract a set of local features that carry the most discriminatory information. A feature vector is formed by projecting the corresponding image regions onto a subspace defined by the combination of basis vectors, which are obtained from different image regions and sorted by the descending order of their corresponding LDA eigenvalues. We demonstrated that binarizing the components of this feature vector significantly improves the recognition accuracy. Experiments performed on the face image databases suggest that the LBLDA outperforms classic LDA both in terms of recognition accuracy and speed. In the future we plan to apply LBLDA on different datasets to test the robustness of the method to lighting and facial expression.

12 References 1. Jain, A.K., Bolle, R., Pankanti, S.: Biometrics: Personal Identification in Networked Society. Kluwer Academic Publishers (1999) 2. Zhang D.: Automated Biometrics: Technologies & Systems. Kluwer Academic Publishers (2000). 3. Turk, M., Pentland, A.: Eigenfaces for Recognition. J. Cognitive Neurosicence 3(1), (1991) 4. Belhumeur, P.N., Hespanha, J.P., Kriegman, D.J.: Eigenfaces vs. Fisherfaces: Recognition Using Class Specific Linear Projection. IEEE Trans. Pattern Analysis and Machine Intelligence 19(7), (1997) 5. Yu, H., Yang, J.: A Direct LDA Algorithm for High-Dimensional Data with Application to Face Recognition. Pattern Recognition 34(10), (2001) 6. Dai, D.Q., Yuen, P.C.: Regularized discriminant analysis and its application to face recognition. Pattern Recognition 36(3), (2003) 7. Cevikalp, H., Neamtu, M., Wilkes, M., Barkana, A.: Discriminativen common vectors for face recognition. IEEE Trans. Pattern Analysis and Machine Intelligence 27(1), (2005) 8. Kim, T.K., Kittler, J.: Locally linear discriminant analysis for multimodally distributed classes for face recognition with a single model image. IEEE Trans. Pattern Analysis and Machine Intelligence 27(3), (2005) 9. Pentland, A., Moghaddam, B., Starner, T.: View-based and modular eigenspaces for face recognition. In Proc. CVPR 1994, (1994) 10. Serrano, A., de Diego, I.M., Conde, C., Cabello, E.: Recent advances in face biometrics with Gabor wavelets: A review. Pattern Recognition Lett. 31(5), (2010) 11. Marcel, S., Rodriguez, Y., Heusch, G.: On the Recent Use of Local Binary Patterns for Face Authentication. Int'l J. on Image and Video Processing, Special Issue on Facial Image Processing, 1--9 (2007) 12. Méndez-Vázquez, H., García-Reyes, E., Condes-Molleda, Y.: A New Combination of Local Appearance Based Methods for Face Recognition under Varying Lighting Conditions. Lecture Notes in Computer Science 5197, (2008) 13. Pan, C., Cao, F.: Face Image recognition Combining Holistic and Local Features. Lecture Notes in Computer Science 5553, (2009) 14. Sun, Z., Tan, T.: Ordinal Measures for Iris Recognition, IEEE Trans. Pattern Analysis and Machine Intelligence 31(12), (2009) 15. DeAngelis, G.C., Ohzawa, I., Freeman, R.D.: Spatiotemporal Organization of Simple-Cell Receptive Fields in the Cat s Striate Cortex, I. General Characteristics and Postnatal Development. J. Neurophysiology 69(4), (1993) 16. Wu, X., Zhang, D., Wang, K.: Fisherpalms Based Palmprint Recognition. Pattern Recognition Lett. 24(15), (2003) 17. Daugman, J.: High confidence visual recognition of persons by a test of statistical independence. IEEE Trans. Pattern Analysis and Machine Intelligence 15(11), (1993) 18. Zhang, D., Kong, W.K., You, J., Wong, M.: Online Palm Print Identification, IEEE Trans. Pattern Analysis and Machine Intelligence 25(2), (2003) 19. Messer, K., Matas, J., Kittler, J., Luettin, J., Maitre, G.: XM2VTSDB: The extended M2VTS database. In Proc. AVBPA99, (1999) 20. Gonzales, R.C., Woods, R.E.: Digital Image Processing. Addison Wesley (1993) 21. Kittler, J., Li, Y.P., Matas, J.: On Matching Scores for LDA-based Face Verification. In Proc. British Machine Vision Conference 2000, (2000)

A Biometric Verification System Based on the Fusion of Palmprint and Face Features

A Biometric Verification System Based on the Fusion of Palmprint and Face Features A Biometric Verification System Based on the Fusion of Palmprint and Face Features Slobodan Ribaric, Ivan Fratric and Kristina Kis Faculty of Electrical Engineering and Computing, University of Zagreb,

More information

A Hierarchical Face Identification System Based on Facial Components

A Hierarchical Face Identification System Based on Facial Components A Hierarchical Face Identification System Based on Facial Components Mehrtash T. Harandi, Majid Nili Ahmadabadi, and Babak N. Araabi Control and Intelligent Processing Center of Excellence Department of

More information

Linear Discriminant Analysis in Ottoman Alphabet Character Recognition

Linear Discriminant Analysis in Ottoman Alphabet Character Recognition Linear Discriminant Analysis in Ottoman Alphabet Character Recognition ZEYNEB KURT, H. IREM TURKMEN, M. ELIF KARSLIGIL Department of Computer Engineering, Yildiz Technical University, 34349 Besiktas /

More information

Image-Based Face Recognition using Global Features

Image-Based Face Recognition using Global Features Image-Based Face Recognition using Global Features Xiaoyin xu Research Centre for Integrated Microsystems Electrical and Computer Engineering University of Windsor Supervisors: Dr. Ahmadi May 13, 2005

More information

FACE RECOGNITION BASED ON GENDER USING A MODIFIED METHOD OF 2D-LINEAR DISCRIMINANT ANALYSIS

FACE RECOGNITION BASED ON GENDER USING A MODIFIED METHOD OF 2D-LINEAR DISCRIMINANT ANALYSIS FACE RECOGNITION BASED ON GENDER USING A MODIFIED METHOD OF 2D-LINEAR DISCRIMINANT ANALYSIS 1 Fitri Damayanti, 2 Wahyudi Setiawan, 3 Sri Herawati, 4 Aeri Rachmad 1,2,3,4 Faculty of Engineering, University

More information

CHAPTER 3 PRINCIPAL COMPONENT ANALYSIS AND FISHER LINEAR DISCRIMINANT ANALYSIS

CHAPTER 3 PRINCIPAL COMPONENT ANALYSIS AND FISHER LINEAR DISCRIMINANT ANALYSIS 38 CHAPTER 3 PRINCIPAL COMPONENT ANALYSIS AND FISHER LINEAR DISCRIMINANT ANALYSIS 3.1 PRINCIPAL COMPONENT ANALYSIS (PCA) 3.1.1 Introduction In the previous chapter, a brief literature review on conventional

More information

On Modeling Variations for Face Authentication

On Modeling Variations for Face Authentication On Modeling Variations for Face Authentication Xiaoming Liu Tsuhan Chen B.V.K. Vijaya Kumar Department of Electrical and Computer Engineering, Carnegie Mellon University, Pittsburgh, PA 15213 xiaoming@andrew.cmu.edu

More information

A Fast Personal Palm print Authentication based on 3D-Multi Wavelet Transformation

A Fast Personal Palm print Authentication based on 3D-Multi Wavelet Transformation A Fast Personal Palm print Authentication based on 3D-Multi Wavelet Transformation * A. H. M. Al-Helali, * W. A. Mahmmoud, and * H. A. Ali * Al- Isra Private University Email: adnan_hadi@yahoo.com Abstract:

More information

Applications Video Surveillance (On-line or off-line)

Applications Video Surveillance (On-line or off-line) Face Face Recognition: Dimensionality Reduction Biometrics CSE 190-a Lecture 12 CSE190a Fall 06 CSE190a Fall 06 Face Recognition Face is the most common biometric used by humans Applications range from

More information

Learning to Recognize Faces in Realistic Conditions

Learning to Recognize Faces in Realistic Conditions 000 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 045 046 047 048 049 050

More information

A Survey on Feature Extraction Techniques for Palmprint Identification

A Survey on Feature Extraction Techniques for Palmprint Identification International Journal Of Computational Engineering Research (ijceronline.com) Vol. 03 Issue. 12 A Survey on Feature Extraction Techniques for Palmprint Identification Sincy John 1, Kumudha Raimond 2 1

More information

Robust face recognition under the polar coordinate system

Robust face recognition under the polar coordinate system Robust face recognition under the polar coordinate system Jae Hyun Oh and Nojun Kwak Department of Electrical & Computer Engineering, Ajou University, Suwon, Korea Abstract In this paper, we propose a

More information

Haresh D. Chande #, Zankhana H. Shah *

Haresh D. Chande #, Zankhana H. Shah * Illumination Invariant Face Recognition System Haresh D. Chande #, Zankhana H. Shah * # Computer Engineering Department, Birla Vishvakarma Mahavidyalaya, Gujarat Technological University, India * Information

More information

LOCAL APPEARANCE BASED FACE RECOGNITION USING DISCRETE COSINE TRANSFORM

LOCAL APPEARANCE BASED FACE RECOGNITION USING DISCRETE COSINE TRANSFORM LOCAL APPEARANCE BASED FACE RECOGNITION USING DISCRETE COSINE TRANSFORM Hazim Kemal Ekenel, Rainer Stiefelhagen Interactive Systems Labs, University of Karlsruhe Am Fasanengarten 5, 76131, Karlsruhe, Germany

More information

Real-Time Model-Based Hand Localization for Unsupervised Palmar Image Acquisition

Real-Time Model-Based Hand Localization for Unsupervised Palmar Image Acquisition Real-Time Model-Based Hand Localization for Unsupervised Palmar Image Acquisition Ivan Fratric 1, Slobodan Ribaric 1 1 University of Zagreb, Faculty of Electrical Engineering and Computing, Unska 3, 10000

More information

Biometric Security System Using Palm print

Biometric Security System Using Palm print ISSN (Online) : 2319-8753 ISSN (Print) : 2347-6710 International Journal of Innovative Research in Science, Engineering and Technology Volume 3, Special Issue 3, March 2014 2014 International Conference

More information

Final Project Face Detection and Recognition

Final Project Face Detection and Recognition Final Project Face Detection and Recognition Submission Guidelines: 1. Follow the guidelines detailed in the course website and information page.. Submission in pairs is allowed for all students registered

More information

Application of 2DPCA Based Techniques in DCT Domain for Face Recognition

Application of 2DPCA Based Techniques in DCT Domain for Face Recognition Application of 2DPCA Based Techniques in DCT Domain for Face Recognition essaoud Bengherabi, Lamia ezai, Farid Harizi, Abderraza Guessoum 2, and ohamed Cheriet 3 Centre de Développement des Technologies

More information

A Study on Similarity Computations in Template Matching Technique for Identity Verification

A Study on Similarity Computations in Template Matching Technique for Identity Verification A Study on Similarity Computations in Template Matching Technique for Identity Verification Lam, S. K., Yeong, C. Y., Yew, C. T., Chai, W. S., Suandi, S. A. Intelligent Biometric Group, School of Electrical

More information

Face Recognition Using SIFT- PCA Feature Extraction and SVM Classifier

Face Recognition Using SIFT- PCA Feature Extraction and SVM Classifier IOSR Journal of VLSI and Signal Processing (IOSR-JVSP) Volume 5, Issue 2, Ver. II (Mar. - Apr. 2015), PP 31-35 e-issn: 2319 4200, p-issn No. : 2319 4197 www.iosrjournals.org Face Recognition Using SIFT-

More information

CHAPTER 5 GLOBAL AND LOCAL FEATURES FOR FACE RECOGNITION

CHAPTER 5 GLOBAL AND LOCAL FEATURES FOR FACE RECOGNITION 122 CHAPTER 5 GLOBAL AND LOCAL FEATURES FOR FACE RECOGNITION 5.1 INTRODUCTION Face recognition, means checking for the presence of a face from a database that contains many faces and could be performed

More information

Linear Discriminant Analysis for 3D Face Recognition System

Linear Discriminant Analysis for 3D Face Recognition System Linear Discriminant Analysis for 3D Face Recognition System 3.1 Introduction Face recognition and verification have been at the top of the research agenda of the computer vision community in recent times.

More information

An Integrated Face Recognition Algorithm Based on Wavelet Subspace

An Integrated Face Recognition Algorithm Based on Wavelet Subspace , pp.20-25 http://dx.doi.org/0.4257/astl.204.48.20 An Integrated Face Recognition Algorithm Based on Wavelet Subspace Wenhui Li, Ning Ma, Zhiyan Wang College of computer science and technology, Jilin University,

More information

Dimension Reduction CS534

Dimension Reduction CS534 Dimension Reduction CS534 Why dimension reduction? High dimensionality large number of features E.g., documents represented by thousands of words, millions of bigrams Images represented by thousands of

More information

Recognition of Non-symmetric Faces Using Principal Component Analysis

Recognition of Non-symmetric Faces Using Principal Component Analysis Recognition of Non-symmetric Faces Using Principal Component Analysis N. Krishnan Centre for Information Technology & Engineering Manonmaniam Sundaranar University, Tirunelveli-627012, India Krishnan17563@yahoo.com

More information

A GENERIC FACE REPRESENTATION APPROACH FOR LOCAL APPEARANCE BASED FACE VERIFICATION

A GENERIC FACE REPRESENTATION APPROACH FOR LOCAL APPEARANCE BASED FACE VERIFICATION A GENERIC FACE REPRESENTATION APPROACH FOR LOCAL APPEARANCE BASED FACE VERIFICATION Hazim Kemal Ekenel, Rainer Stiefelhagen Interactive Systems Labs, Universität Karlsruhe (TH) 76131 Karlsruhe, Germany

More information

Genetic Model Optimization for Hausdorff Distance-Based Face Localization

Genetic Model Optimization for Hausdorff Distance-Based Face Localization c In Proc. International ECCV 2002 Workshop on Biometric Authentication, Springer, Lecture Notes in Computer Science, LNCS-2359, pp. 103 111, Copenhagen, Denmark, June 2002. Genetic Model Optimization

More information

Biometrics Technology: Image Processing & Pattern Recognition (by Dr. Dickson Tong)

Biometrics Technology: Image Processing & Pattern Recognition (by Dr. Dickson Tong) Biometrics Technology: Image Processing & Pattern Recognition (by Dr. Dickson Tong) References: [1] http://homepages.inf.ed.ac.uk/rbf/hipr2/index.htm [2] http://www.cs.wisc.edu/~dyer/cs540/notes/vision.html

More information

Face Recognition for Mobile Devices

Face Recognition for Mobile Devices Face Recognition for Mobile Devices Aditya Pabbaraju (adisrinu@umich.edu), Srujankumar Puchakayala (psrujan@umich.edu) INTRODUCTION Face recognition is an application used for identifying a person from

More information

Face Detection and Recognition in an Image Sequence using Eigenedginess

Face Detection and Recognition in an Image Sequence using Eigenedginess Face Detection and Recognition in an Image Sequence using Eigenedginess B S Venkatesh, S Palanivel and B Yegnanarayana Department of Computer Science and Engineering. Indian Institute of Technology, Madras

More information

An Automatic Face Recognition System in the Near Infrared Spectrum

An Automatic Face Recognition System in the Near Infrared Spectrum An Automatic Face Recognition System in the Near Infrared Spectrum Shuyan Zhao and Rolf-Rainer Grigat Technical University Hamburg Harburg Vision Systems, 4-08/1 Harburger Schloßstr 20 21079 Hamburg, Germany

More information

GENDER CLASSIFICATION USING SUPPORT VECTOR MACHINES

GENDER CLASSIFICATION USING SUPPORT VECTOR MACHINES GENDER CLASSIFICATION USING SUPPORT VECTOR MACHINES Ashwin Swaminathan ashwins@umd.edu ENEE633: Statistical and Neural Pattern Recognition Instructor : Prof. Rama Chellappa Project 2, Part (a) 1. INTRODUCTION

More information

Recognition: Face Recognition. Linda Shapiro EE/CSE 576

Recognition: Face Recognition. Linda Shapiro EE/CSE 576 Recognition: Face Recognition Linda Shapiro EE/CSE 576 1 Face recognition: once you ve detected and cropped a face, try to recognize it Detection Recognition Sally 2 Face recognition: overview Typical

More information

Comparison of Different Face Recognition Algorithms

Comparison of Different Face Recognition Algorithms Comparison of Different Face Recognition Algorithms Pavan Pratap Chauhan 1, Vishal Kumar Lath 2 and Mr. Praveen Rai 3 1,2,3 Computer Science and Engineering, IIMT College of Engineering(Greater Noida),

More information

FACE RECOGNITION USING SUPPORT VECTOR MACHINES

FACE RECOGNITION USING SUPPORT VECTOR MACHINES FACE RECOGNITION USING SUPPORT VECTOR MACHINES Ashwin Swaminathan ashwins@umd.edu ENEE633: Statistical and Neural Pattern Recognition Instructor : Prof. Rama Chellappa Project 2, Part (b) 1. INTRODUCTION

More information

Image Processing and Image Representations for Face Recognition

Image Processing and Image Representations for Face Recognition Image Processing and Image Representations for Face Recognition 1 Introduction Face recognition is an active area of research in image processing and pattern recognition. Since the general topic of face

More information

Face detection and recognition. Detection Recognition Sally

Face detection and recognition. Detection Recognition Sally Face detection and recognition Detection Recognition Sally Face detection & recognition Viola & Jones detector Available in open CV Face recognition Eigenfaces for face recognition Metric learning identification

More information

Face Recognition using Principle Component Analysis, Eigenface and Neural Network

Face Recognition using Principle Component Analysis, Eigenface and Neural Network Face Recognition using Principle Component Analysis, Eigenface and Neural Network Mayank Agarwal Student Member IEEE Noida,India mayank.agarwal@ieee.org Nikunj Jain Student Noida,India nikunj262@gmail.com

More information

Feature-level Fusion for Effective Palmprint Authentication

Feature-level Fusion for Effective Palmprint Authentication Feature-level Fusion for Effective Palmprint Authentication Adams Wai-Kin Kong 1, 2 and David Zhang 1 1 Biometric Research Center, Department of Computing The Hong Kong Polytechnic University, Kowloon,

More information

Selection of Location, Frequency and Orientation Parameters of 2D Gabor Wavelets for Face Recognition

Selection of Location, Frequency and Orientation Parameters of 2D Gabor Wavelets for Face Recognition Selection of Location, Frequency and Orientation Parameters of 2D Gabor Wavelets for Face Recognition Berk Gökberk, M.O. İrfanoğlu, Lale Akarun, and Ethem Alpaydın Boğaziçi University, Department of Computer

More information

Discriminate Analysis

Discriminate Analysis Discriminate Analysis Outline Introduction Linear Discriminant Analysis Examples 1 Introduction What is Discriminant Analysis? Statistical technique to classify objects into mutually exclusive and exhaustive

More information

The Analysis of Parameters t and k of LPP on Several Famous Face Databases

The Analysis of Parameters t and k of LPP on Several Famous Face Databases The Analysis of Parameters t and k of LPP on Several Famous Face Databases Sujing Wang, Na Zhang, Mingfang Sun, and Chunguang Zhou College of Computer Science and Technology, Jilin University, Changchun

More information

Face Biometrics Based on Principal Component Analysis and Linear Discriminant Analysis

Face Biometrics Based on Principal Component Analysis and Linear Discriminant Analysis Journal of Computer Science 6 (7): 693-699, 2010 ISSN 1549-3636 2010 Science Publications Face Biometrics Based on Principal Component Analysis and Linear Discriminant Analysis Lih-Heng Chan, Sh-Hussain

More information

Graph Matching Iris Image Blocks with Local Binary Pattern

Graph Matching Iris Image Blocks with Local Binary Pattern Graph Matching Iris Image Blocs with Local Binary Pattern Zhenan Sun, Tieniu Tan, and Xianchao Qiu Center for Biometrics and Security Research, National Laboratory of Pattern Recognition, Institute of

More information

Individual discriminative face recognition models based on subsets of features

Individual discriminative face recognition models based on subsets of features Individual discriminative face recognition models based on subsets of features Line H. Clemmensen 1, David D. Gomez 2, and Bjarne K. Ersbøll 1 1 Informatics and Mathematical Modelling, Technical University

More information

Global fitting of a facial model to facial features for model based video coding

Global fitting of a facial model to facial features for model based video coding Global fitting of a facial model to facial features for model based video coding P M Hillman J M Hannah P M Grant University of Edinburgh School of Engineering and Electronics Sanderson Building, King

More information

Semi-Supervised PCA-based Face Recognition Using Self-Training

Semi-Supervised PCA-based Face Recognition Using Self-Training Semi-Supervised PCA-based Face Recognition Using Self-Training Fabio Roli and Gian Luca Marcialis Dept. of Electrical and Electronic Engineering, University of Cagliari Piazza d Armi, 09123 Cagliari, Italy

More information

Critique: Efficient Iris Recognition by Characterizing Key Local Variations

Critique: Efficient Iris Recognition by Characterizing Key Local Variations Critique: Efficient Iris Recognition by Characterizing Key Local Variations Authors: L. Ma, T. Tan, Y. Wang, D. Zhang Published: IEEE Transactions on Image Processing, Vol. 13, No. 6 Critique By: Christopher

More information

Hybrid Biometric Person Authentication Using Face and Voice Features

Hybrid Biometric Person Authentication Using Face and Voice Features Paper presented in the Third International Conference, Audio- and Video-Based Biometric Person Authentication AVBPA 2001, Halmstad, Sweden, proceedings pages 348-353, June 2001. Hybrid Biometric Person

More information

Fusion of Hand Geometry and Palmprint Biometrics

Fusion of Hand Geometry and Palmprint Biometrics (Working Paper, Dec. 2003) Fusion of Hand Geometry and Palmprint Biometrics D.C.M. Wong, C. Poon and H.C. Shen * Department of Computer Science, Hong Kong University of Science and Technology, Clear Water

More information

Robust Face Recognition via Sparse Representation Authors: John Wright, Allen Y. Yang, Arvind Ganesh, S. Shankar Sastry, and Yi Ma

Robust Face Recognition via Sparse Representation Authors: John Wright, Allen Y. Yang, Arvind Ganesh, S. Shankar Sastry, and Yi Ma Robust Face Recognition via Sparse Representation Authors: John Wright, Allen Y. Yang, Arvind Ganesh, S. Shankar Sastry, and Yi Ma Presented by Hu Han Jan. 30 2014 For CSE 902 by Prof. Anil K. Jain: Selected

More information

Finger-Based Personal Authentication: A Comparison of Feature- Extraction Methods Based on PCA, MDF and RD-LDA

Finger-Based Personal Authentication: A Comparison of Feature- Extraction Methods Based on PCA, MDF and RD-LDA Finger-Based Personal Authentication: A Comparison of Feature- Extraction Methods Based on PCA, MDF and RD-LDA Nikola Pavešić 1, Slobodan Ribarić 2 and Benjamin Grad 1 1 Faculty of Electrical Engineering,

More information

Automatic Countenance Recognition Using DCT-PCA Technique of Facial Patches with High Detection Rate

Automatic Countenance Recognition Using DCT-PCA Technique of Facial Patches with High Detection Rate Advances in Computational Sciences and Technology ISSN 0973-6107 Volume 10, Number 11 (2017) pp. 3141-3150 Research India Publications http://www.ripublication.com Automatic Countenance Recognition Using

More information

PCA and KPCA algorithms for Face Recognition A Survey

PCA and KPCA algorithms for Face Recognition A Survey PCA and KPCA algorithms for Face Recognition A Survey Surabhi M. Dhokai 1, Vaishali B.Vala 2,Vatsal H. Shah 3 1 Department of Information Technology, BVM Engineering College, surabhidhokai@gmail.com 2

More information

Principal Component Analysis and Neural Network Based Face Recognition

Principal Component Analysis and Neural Network Based Face Recognition Principal Component Analysis and Neural Network Based Face Recognition Qing Jiang Mailbox Abstract People in computer vision and pattern recognition have been working on automatic recognition of human

More information

Stepwise Nearest Neighbor Discriminant Analysis

Stepwise Nearest Neighbor Discriminant Analysis Stepwise Nearest Neighbor Discriminant Analysis Xipeng Qiu and Lide Wu Media Computing & Web Intelligence Lab Department of Computer Science and Engineering Fudan University, Shanghai, China xpqiu,ldwu@fudan.edu.cn

More information

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

Face detection and recognition. Many slides adapted from K. Grauman and D. Lowe Face detection and recognition Many slides adapted from K. Grauman and D. Lowe Face detection and recognition Detection Recognition Sally History Early face recognition systems: based on features and distances

More information

Facial Expression Recognition Using Non-negative Matrix Factorization

Facial Expression Recognition Using Non-negative Matrix Factorization Facial Expression Recognition Using Non-negative Matrix Factorization Symeon Nikitidis, Anastasios Tefas and Ioannis Pitas Artificial Intelligence & Information Analysis Lab Department of Informatics Aristotle,

More information

Dimensionality Reduction and Classification through PCA and LDA

Dimensionality Reduction and Classification through PCA and LDA International Journal of Computer Applications (09 8887) Dimensionality Reduction and Classification through and Telgaonkar Archana H. PG Student Department of CS and IT Dr. BAMU, Aurangabad Deshmukh Sachin

More information

Technical Report. Title: Manifold learning and Random Projections for multi-view object recognition

Technical Report. Title: Manifold learning and Random Projections for multi-view object recognition Technical Report Title: Manifold learning and Random Projections for multi-view object recognition Authors: Grigorios Tsagkatakis 1 and Andreas Savakis 2 1 Center for Imaging Science, Rochester Institute

More information

Digital Vision Face recognition

Digital Vision Face recognition Ulrik Söderström ulrik.soderstrom@tfe.umu.se 27 May 2007 Digital Vision Face recognition 1 Faces Faces are integral to human interaction Manual facial recognition is already used in everyday authentication

More information

Local Similarity based Linear Discriminant Analysis for Face Recognition with Single Sample per Person

Local Similarity based Linear Discriminant Analysis for Face Recognition with Single Sample per Person Local Similarity based Linear Discriminant Analysis for Face Recognition with Single Sample per Person Fan Liu 1, Ye Bi 1, Yan Cui 2, Zhenmin Tang 1 1 School of Computer Science and Engineering, Nanjing

More information

Robust Face Recognition via Sparse Representation

Robust Face Recognition via Sparse Representation Robust Face Recognition via Sparse Representation Panqu Wang Department of Electrical and Computer Engineering University of California, San Diego La Jolla, CA 92092 pawang@ucsd.edu Can Xu Department of

More information

Face Recognition Combine Generic and Specific Solutions

Face Recognition Combine Generic and Specific Solutions Face Recognition Combine Generic and Specific Solutions Jie Wang, Juwei Lu, K.N. Plataniotis, and A.N. Venetsanopoulos Department of Electrical and Computer Engineering, University of Toronto, 10 King

More information

Object and Action Detection from a Single Example

Object and Action Detection from a Single Example Object and Action Detection from a Single Example Peyman Milanfar* EE Department University of California, Santa Cruz *Joint work with Hae Jong Seo AFOSR Program Review, June 4-5, 29 Take a look at this:

More information

We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists. International authors and editors

We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists. International authors and editors We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists 4,000 6,000 M Open access books available International authors and editors Downloads Our authors

More information

Study and Comparison of Different Face Recognition Algorithms

Study and Comparison of Different Face Recognition Algorithms , pp-05-09 Study and Comparison of Different Face Recognition Algorithms 1 1 2 3 4 Vaibhav Pathak and D.N. Patwari, P.B. Khanale, N.M. Tamboli and Vishal M. Pathak 1 Shri Shivaji College, Parbhani 2 D.S.M.

More information

Illumination invariant face recognition and impostor rejection using different MINACE filter algorithms

Illumination invariant face recognition and impostor rejection using different MINACE filter algorithms Illumination invariant face recognition and impostor rejection using different MINACE filter algorithms Rohit Patnaik and David Casasent Dept. of Electrical and Computer Engineering, Carnegie Mellon University,

More information

K-Nearest Neighbor Classification Approach for Face and Fingerprint at Feature Level Fusion

K-Nearest Neighbor Classification Approach for Face and Fingerprint at Feature Level Fusion K-Nearest Neighbor Classification Approach for Face and Fingerprint at Feature Level Fusion Dhriti PEC University of Technology Chandigarh India Manvjeet Kaur PEC University of Technology Chandigarh India

More information

Part-based Face Recognition Using Near Infrared Images

Part-based Face Recognition Using Near Infrared Images Part-based Face Recognition Using Near Infrared Images Ke Pan Shengcai Liao Zhijian Zhang Stan Z. Li Peiren Zhang University of Science and Technology of China Hefei 230026, China Center for Biometrics

More information

A Wavelet-based Feature Selection Scheme for Palm-print Recognition

A Wavelet-based Feature Selection Scheme for Palm-print Recognition Vol.1, Issue.2, pp-278-287 ISSN: 2249-6645 A Wavelet-based Feature Selection Scheme for Palm-print Recognition Hafiz Imtiaz, Shaikh Anowarul Fattah (Department of Electrical and Electronic Engineering

More information

Performance Evaluation of PCA and LDA for Face Recognition

Performance Evaluation of PCA and LDA for Face Recognition Performance Evaluation of PCA and LDA for Face Recognition S. K. Hese, M. R. Banwaskar Department of Electronics & Telecommunication, MGM s College of Engineering Nanded Near Airport, Nanded, Maharashtra,

More information

Face Recognition using FSS-DSOP for Small Sample Size Problem with Illumination

Face Recognition using FSS-DSOP for Small Sample Size Problem with Illumination Int. J. Advance. Soft Comput. Appl., Vol. 1, No. 2, November 2009 ISSN 2074-8523; Copyright ICSRS Publication, 2009 www.i-csrs.org Face Recognition using FSS-DSOP for Small Sample Size Problem with Illumination

More information

Face recognition based on improved BP neural network

Face recognition based on improved BP neural network Face recognition based on improved BP neural network Gaili Yue, Lei Lu a, College of Electrical and Control Engineering, Xi an University of Science and Technology, Xi an 710043, China Abstract. In order

More information

Multidirectional 2DPCA Based Face Recognition System

Multidirectional 2DPCA Based Face Recognition System Multidirectional 2DPCA Based Face Recognition System Shilpi Soni 1, Raj Kumar Sahu 2 1 M.E. Scholar, Department of E&Tc Engg, CSIT, Durg 2 Associate Professor, Department of E&Tc Engg, CSIT, Durg Email:

More information

An Efficient Face Recognition using Discriminative Robust Local Binary Pattern and Gabor Filter with Single Sample per Class

An Efficient Face Recognition using Discriminative Robust Local Binary Pattern and Gabor Filter with Single Sample per Class An Efficient Face Recognition using Discriminative Robust Local Binary Pattern and Gabor Filter with Single Sample per Class D.R.MONISHA 1, A.USHA RUBY 2, J.GEORGE CHELLIN CHANDRAN 3 Department of Computer

More information

Hierarchical Ensemble of Gabor Fisher Classifier for Face Recognition

Hierarchical Ensemble of Gabor Fisher Classifier for Face Recognition Hierarchical Ensemble of Gabor Fisher Classifier for Face Recognition Yu Su 1,2 Shiguang Shan,2 Xilin Chen 2 Wen Gao 1,2 1 School of Computer Science and Technology, Harbin Institute of Technology, Harbin,

More information

Keywords Palmprint recognition, patterns, features

Keywords Palmprint recognition, patterns, features Volume 7, Issue 3, March 2017 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A Review on Palm

More information

Part-based Face Recognition Using Near Infrared Images

Part-based Face Recognition Using Near Infrared Images Part-based Face Recognition Using Near Infrared Images Ke Pan Shengcai Liao Zhijian Zhang Stan Z. Li Peiren Zhang University of Science and Technology of China Hefei 230026, China Center for Biometrics

More information

Face Recognition using Tensor Analysis. Prahlad R. Enuganti

Face Recognition using Tensor Analysis. Prahlad R. Enuganti Face Recognition using Tensor Analysis Prahlad R. Enuganti The University of Texas at Austin Literature Survey EE381K 14 Multidimensional Digital Signal Processing March 25, 2005 Submitted to Prof. Brian

More information

Feature Detection and Tracking with Constrained Local Models

Feature Detection and Tracking with Constrained Local Models Feature Detection and Tracking with Constrained Local Models David Cristinacce and Tim Cootes Dept. Imaging Science and Biomedical Engineering University of Manchester, Manchester, M3 9PT, U.K. david.cristinacce@manchester.ac.uk

More information

EAR RECOGNITION AND OCCLUSION

EAR RECOGNITION AND OCCLUSION EAR RECOGNITION AND OCCLUSION B. S. El-Desouky 1, M. El-Kady 2, M. Z. Rashad 3, Mahmoud M. Eid 4 1 Mathematics Department, Faculty of Science, Mansoura University, Egypt b_desouky@yahoo.com 2 Mathematics

More information

Published by: PIONEER RESEARCH & DEVELOPMENT GROUP(www.prdg.org) 1

Published by: PIONEER RESEARCH & DEVELOPMENT GROUP(www.prdg.org) 1 FACE RECOGNITION USING PRINCIPLE COMPONENT ANALYSIS (PCA) ALGORITHM P.Priyanka 1, Dorairaj Sukanya 2 and V.Sumathy 3 1,2,3 Department of Computer Science and Engineering, Kingston Engineering College,

More information

IRIS Recognition System Based On DCT - Matrix Coefficient Lokesh Sharma 1

IRIS Recognition System Based On DCT - Matrix Coefficient Lokesh Sharma 1 Volume 2, Issue 10, October 2014 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online at: www.ijarcsms.com

More information

Comparison of face recognition algorithms in terms of the learning set selection

Comparison of face recognition algorithms in terms of the learning set selection Comparison of face recognition algorithms in terms of the learning set selection Simon Gangl Domen Mongus Supervised by: Borut Žalik Laboratory for Geometric Modelling and Multimedia Algorithms Faculty

More information

PARALLEL GABOR PCA WITH FUSION OF SVM SCORES FOR FACE VERIFICATION

PARALLEL GABOR PCA WITH FUSION OF SVM SCORES FOR FACE VERIFICATION PARALLEL GABOR WITH FUSION OF SVM SCORES FOR FACE VERIFICATION Ángel Serrano, Cristina Conde, Isaac Martín de Diego, Enrique Cabello 1 Face Recognition & Artificial Vision Group, Universidad Rey Juan Carlos

More information

Available online at ScienceDirect. Procedia Computer Science 46 (2015 )

Available online at   ScienceDirect. Procedia Computer Science 46 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 46 (2015 ) 1754 1761 International Conference on Information and Communication Technologies (ICICT 2014) Age Estimation

More information

Diagonal Principal Component Analysis for Face Recognition

Diagonal Principal Component Analysis for Face Recognition Diagonal Principal Component nalysis for Face Recognition Daoqiang Zhang,2, Zhi-Hua Zhou * and Songcan Chen 2 National Laboratory for Novel Software echnology Nanjing University, Nanjing 20093, China 2

More information

IMPROVED FACE RECOGNITION USING ICP TECHNIQUES INCAMERA SURVEILLANCE SYSTEMS. Kirthiga, M.E-Communication system, PREC, Thanjavur

IMPROVED FACE RECOGNITION USING ICP TECHNIQUES INCAMERA SURVEILLANCE SYSTEMS. Kirthiga, M.E-Communication system, PREC, Thanjavur IMPROVED FACE RECOGNITION USING ICP TECHNIQUES INCAMERA SURVEILLANCE SYSTEMS Kirthiga, M.E-Communication system, PREC, Thanjavur R.Kannan,Assistant professor,prec Abstract: Face Recognition is important

More information

Criminal Identification System Using Face Detection and Recognition

Criminal Identification System Using Face Detection and Recognition Criminal Identification System Using Face Detection and Recognition Piyush Kakkar 1, Mr. Vibhor Sharma 2 Information Technology Department, Maharaja Agrasen Institute of Technology, Delhi 1 Assistant Professor,

More information

Announcements. Recognition I. Gradient Space (p,q) What is the reflectance map?

Announcements. Recognition I. Gradient Space (p,q) What is the reflectance map? Announcements I HW 3 due 12 noon, tomorrow. HW 4 to be posted soon recognition Lecture plan recognition for next two lectures, then video and motion. Introduction to Computer Vision CSE 152 Lecture 17

More information

Thermal Face Recognition Matching Algorithms Performance

Thermal Face Recognition Matching Algorithms Performance Thermal Face Recognition Matching Algorithms Performance Jan Váňa, Martin Drahanský, Radim Dvořák ivanajan@fit.vutbr.cz, drahan@fit.vutbr.cz, idvorak@fit.vutbr.cz Faculty of Information Technology Brno

More information

Iris Recognition for Eyelash Detection Using Gabor Filter

Iris Recognition for Eyelash Detection Using Gabor Filter Iris Recognition for Eyelash Detection Using Gabor Filter Rupesh Mude 1, Meenakshi R Patel 2 Computer Science and Engineering Rungta College of Engineering and Technology, Bhilai Abstract :- Iris recognition

More information

Learning based face hallucination techniques: A survey

Learning based face hallucination techniques: A survey Vol. 3 (2014-15) pp. 37-45. : A survey Premitha Premnath K Department of Computer Science & Engineering Vidya Academy of Science & Technology Thrissur - 680501, Kerala, India (email: premithakpnath@gmail.com)

More information

A STUDY OF FEATURES EXTRACTION ALGORITHMS FOR HUMAN FACE RECOGNITION

A STUDY OF FEATURES EXTRACTION ALGORITHMS FOR HUMAN FACE RECOGNITION A STUDY OF FEATURES EXTRACTION ALGORITHMS FOR HUMAN FACE RECOGNITION Ismaila W. O. Adetunji A. B. Falohun A. S. Ladoke Akintola University of Technology, Ogbomoso Iwashokun G. B. Federal University of

More information

Index. Symbols. Index 353

Index. Symbols. Index 353 Index 353 Index Symbols 1D-based BID 12 2D biometric images 7 2D image matrix-based LDA 274 2D transform 300 2D-based BID 12 2D-Gaussian filter 228 2D-KLT 300, 302 2DPCA 293 3-D face geometric shapes 7

More information

A New Multi Fractal Dimension Method for Face Recognition with Fewer Features under Expression Variations

A New Multi Fractal Dimension Method for Face Recognition with Fewer Features under Expression Variations A New Multi Fractal Dimension Method for Face Recognition with Fewer Features under Expression Variations Maksud Ahamad Assistant Professor, Computer Science & Engineering Department, Ideal Institute of

More information

FACE RECOGNITION UNDER LOSSY COMPRESSION. Mustafa Ersel Kamaşak and Bülent Sankur

FACE RECOGNITION UNDER LOSSY COMPRESSION. Mustafa Ersel Kamaşak and Bülent Sankur FACE RECOGNITION UNDER LOSSY COMPRESSION Mustafa Ersel Kamaşak and Bülent Sankur Signal and Image Processing Laboratory (BUSIM) Department of Electrical and Electronics Engineering Boǧaziçi University

More information

Decision Level Fusion of Face and Palmprint Images for User Identification

Decision Level Fusion of Face and Palmprint Images for User Identification XI Biennial Conference of the International Biometric Society (Indian Region) on Computational Statistics and Bio-Sciences, March 8-9, 2012 83 Decision Level Fusion of Face and Palmprint Images for User

More information

Probabilistic Facial Feature Extraction Using Joint Distribution of Location and Texture Information

Probabilistic Facial Feature Extraction Using Joint Distribution of Location and Texture Information Probabilistic Facial Feature Extraction Using Joint Distribution of Location and Texture Information Mustafa Berkay Yilmaz, Hakan Erdogan, Mustafa Unel Sabanci University, Faculty of Engineering and Natural

More information