SlideShare une entreprise Scribd logo
1  sur  5
Télécharger pour lire hors ligne
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 3460
ComparativeStudy of PCA, KPCA, KFA and LDAAlgorithms for Face
Recognition
Nitin S Prakash1, Prathviraj Shetty2, Kiran Kedilaya3 , Nithesh4, Sunil B N5
1,2,3,4,5 Dept of Computer Science and Engineering, Sahyadri College of Engineering and Management, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Face recognition is the process of identifying
one or more faces in images or video clips by analysing and
comparing known patterns. One of the ways to do this is by
comparing selected facial features from the image andafacial
database. Algorithms typically extract facial features and
compare them to a database to find the best match. This has
wide range of applications which includes Security, Criminal
Identification, Payments, Healthcare, Marketing and so on.
There are plenty of algorithms devised and used for face
recognition, each having its own benefits and shortcomings.
For any face recognition algorithm, the two key stages are
extraction of features and their classification. In this paperwe
focus on comparison between the performances of PCA, KPCA,
KFA and LDA algorithms against AT&T, Yale and UMIST
datasets.
Key Words: PCA, KPCA, KFA, LDA, UMIST, AT&T,
Yale, face recognition.
1.INTRODUCTION
As humans, recognising faces is no big deal to us. But for a
computer which understands only the binary language
consisting of 0 and 1, it is a huge challenge to identify human
faces. Humans of age 2-3 years old can recognise and
distinguish between known faces distinctively. Our
knowledge regarding the process of recognising faces
happening inside a human brain is limited. An approach
based on geometric facial features is the most innate
method for recognising faces. One of the earliest approaches
for face recognition was based on euclidian distance
between the feature vectors of a test image and reference
image. This method, even though was unaffected by change
in lighting conditions, had a major setback due to the
complicated task of accurately positioning marker points.
Face recognition differs substantially from traditional
pattern recognition problemsasthe patterntoberecognised
doesn’t alter. In object recognition, the shapes of the objects
change while in face recognition objects are recognisedwith
the same rudimentary shape differing in colour and form.
Although plenty of algorithms prevail in this domain, each
having their respective utility and hiccups.
While doing a comparative analysis of algorithms, it is
recommended to run them against common and standard
datasets. This helps in easier and efficient
comparison between their performances.
In pattern recognition and in image processing, feature
extraction based dimensionality reduction plays an
important role in the relative areas. Feature extraction
simplifies the amount of resources required to describe a
large set of data accurately for classification and clustering
[1]. Transforming the input data into the set of features is
called feature extraction. Due to the complex variations of
illumination, expression, angle of view and rotation, etc.,itis
difficult to describe the facial features through a single
algorithm. Therefore, most of the current researcheson face
recognition focus on the recognition problems under
restricted conditions. A common face recognition system
consists of preprocessing, feature extraction/selection, and
recognition.
1.1 Principal Component Analysis (PCA)
PCA is a statistical methodology used to minimise the large
dimensionality of the data to manageable congenital
dimensionality. This is essential to depict the data in a cost
effective manner. PCA is an approach that acts in the linear
space hence applications having linear prototypes such as
signal processing, image processing, system and control
their, communications are compatible. Compact
principal components of the feature space are obtained by
PCA after compressing the huge single dimensionalvectorof
pixels generated from 2-Dimensional facial image. This is
called eigenspace projection. By distinguishing the
eigenvectors of the covariance matrix acquired from a set of
vectors the eigenspace is determined.
1.2 Kernel Principal Component Analysis (KPCA)
A linear transformation is not suitable for capturing the
nonlinear structures of the data. In order to represent the
nonlinear structure, the Kernel PCA (KPCA) has been
formulated. In KPCA, the computational cost dependsonthe
sample size. When the sample size is very large, it is
impractical to compute the principal componentsviaadirect
eigenvalue decomposition. Through adopting a polynomial
kernel, the principal components can be computed within
the space spanned by high- order correlations ofinputpixels
making up a facial image, resulting in an improved
performance [2].
The main idea of KPCA is to project the input data from the
linear space into the nonlinear space and then implement
PCA in the nonlinear feature space for feature extraction. In
KPCA, the nonlinearity is firstly mapping the data into
another space using a nonlinear map, and then, PCA is
implemented using the mapped examples [3]. The mapping
and the space are determined implicitly by the choice of a
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 3461
kernel function which computes the dot product between
two input examples mapped into feature space via kernel
function. If kernel function is a positive definite kernel, then
there exists a map into a dot product space.
KPCA-based feature extraction needs to store the original
sample information owing to computing the kernel matrix,
which leads to a huge store and a high computingconsuming
[3]. It is feasible to improve the performance of KPCA with
sparse analysis and kernel optimisation. We reduce the
training samples with sparse analysis and then optimise
kernel structure with the reduced training samples[3].
1.3 Linear Discriminant Analysis (LDA)
Linear Discriminant Analysis (LDA) has been successfully
applied to face recognition which is based on a linear
projection from the image space to a low dimensional
space by maximising the between class scatter and
minimising the within-class scatter [4]. LDA allows
objective evaluation of the significanceofvisualinformation
in different features of the face for identifying the human
face. The LDA also provides us with a small set of features
that carry the most relevant information for classification
purposes.
LDA method overcomes the limitation of Principle
Component Analysis method by applying the linear
discriminant criterion. This criterion tries to maximise
the ratio of determinant of the between-class scatter matrix
of the projected samples to the determinant of the
within-class scatter matrix of the projected samples [4].
Linear discriminant groupsthe imagesof the sameclassand
separate images of different classes. Here toidentifyaninput
test image, the projected test image is compared to each
projected training, and the test image is identified as the
closest training image [4].
Linear discriminant analysis is primarilyusedheretoreduce
the number of featuresto a more manageablenumberbefore
classification. Each of the new dimensions is a linear
combination of pixel values, which form a template [5]. The
linear combinations obtained using Fisher’s linear
discriminant are called Fisher faces, while those obtained
using the related principal component analysis are called
eigenfaces.
There are two main phases: training and classification.Inthe
training phase, a fisher space isestablished fromthetraining
samples and the training faces are projected onto the same
subspace. The optimal projection (transformation) can be
readily computed by applying the Eigen decomposition on
the scatter matrices. In the classification phase, an inputface
is projected into the fisher space and classified using the
Mahalanobis Cosine distance as a similarity measure [6].
1.4 Kernel Fischer Discriminant Analysis (KFDA)
KFDA (also known as KFA - Kernel Fisher Analysis) is a
method that is developed from Linear Discriminant
Analysis. It is a non-linear classification technique based on
Fisher’sdiscriminant. The main ingredient isthekerneltrick
which allows the efficient computation of Fisher
discriminant in feature space [7]. The linear classification
in feature space corresponds to a (powerful) non-linear
decision function in input space.
LDA is used to maximise the separation of data in two
different classes and minimising the distance between data
in the same class. The combination of LDA with kernel
function cause nonlinear transformation. The benefit of
KFDA is that we can process a lot of data with a high
dimensional vector. A high dimensional data is reduced into
the small one and then it performing a new projection
vectors. The objective is that when we have to deal with a
lot of data and dimensions, we can classify the data much
better than only using LDA.
2. DATASETS
It is recommended to pitch algorithms against a standard
database to get a benchmark for their comparative
analysis. We make use of the following standard datasetsfor
the experimental phase: AT&T “The database of Faces”
(formerly TheORL Database of Faces), The Yale Face
Database and The UMIST Face Database.
2.1 AT&T The Database of Faces
The AT&T face database contains a total of 400 images of 40
unique subjects with 10 images per subject. The images are
greyscale and are all stored in PGM format. Each image has
dimensions of 92 X 112 pixels. The images are taken from
the frontal view and some of the images have a slight tilt of
the head in order to introduce variations.
2.2The Sheffield (PreviouslyUMIST)FaceDatabase
The Sheffield ( Previously UMIST) database contains a total
of 480 images of 20 unique subjects with 24 images per
subject with differences in race, gender, appearance. Each
individual is shown in a range of poses ranging from right
profile to left profile. The files are all in PGM format, having
dimensions 220 x 220 pixels with 256-bit grey-scale.
2.3 The Yale Face Database
The Yale face database contains a total of 165 images of 15
subjects with 11 images per subject. The images are all in
greyscale and are stored in gif format. Each imagehas a
dimension of 320 X 243 pixels. The images contain the
following varying conditions: centrally lighted, with glasses,
happy, left light, without glasses, normal, right light, sad,
sleepy, surprised and wink. All these various conditions
provide an ample amount of featurestobedetectedandused
for classifications to check various aspects of the algorithm
to be tested.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 3462
3 EXPERIMENTAL RESULTS
Experimental results are all taken in terms of first rank
recognition rate.
3.1 Algorithm Specific
Algorithm specific results help us determine the
performance of individual algorithms when pitched against
various datasets with varying training ratios. This gives
better insights into how exactly they perform under the
various postures and illumination offered by the datasets.
We have taken the data sequentially for training.
3.1.1 Principal Component Analysis (PCA)
From the PCA algorithm results we observe that for lower
training ratios the efficiency is greater for AT&T dataset
indicating that the algorithm needslesstrainingtorecognise
frontal region of the human face. As the training ratio
increases, the result on Yale face dataset shows better
recognition rate indicating an improvedfacerecognitionrate
for varying facial features and making the system more
robust
Table 1: Face recognition rates of PCA
Chart 1: Face recognition rates of PCA
3.1.2 Kernel Principal ComponentAnalysis (KPCA)
From the KPCA algorithm results we observe that for lower
training ratios the efficiency is greater for AT&T dataset
indicating that the algorithm needslesstrainingtorecognise
frontal region of the human face. As the training ratio
increases, the result on Yale face dataset shows better
recognition rate indicating an improvedfacerecognitionrate
for varying facial features and making the system more
robust. The overall efficiency is low due to the fact that the
algorithm is designed for non linear data and the data we
use is of linear nature.
Table 2: Face recognition rates of KPCA
Chart 2: Face recognition rates of KPCA
3.1.3 Kernel Fischer DiscriminantAnalysis (KFDA)
The KDFA algorithm showcases greater recognition rates
for lower training ratios of AT&T dataset as compared to the
rest of datasets. With the increase in training ratio, it shows
comparable efficiency in recognition with Yale dataset. We
observe a steep decrease in recognition rate when it comes
to UMIST dataset due to the nature of UMIST dataset and
majorly due to the fact that the data is read
sequentially. KFDA also shows the highest recognition rates
ascompares to other algorithmsunder considerationwitha
maximum recognition rate of 96.67% on AT&T and Yale
datasets for training ratio of 70%.
Table 3: Face recognition results of KFDA
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 3463
Chart 3: Face recognition results of KFDA
3.1.4 Linear Discriminant Analysis (LDA)
When it comes to LDA, we observe a steady increase in
recognition rates for all the three datasets. Yale dataset
shows maximum increase in efficiency followed by UMIST
and AT&T. Even though AT&T shows least amount of
increase in recognition rates, it still has maximum
recognition rate up until 60% training ratio which is the
dwarfed by recognition rate for Yale dataset at 96.67%.
Table 4: Face recognition rate of LDA
Chart 4: Face recognition rate of LDA
3.2 Dataset Specific
Dataset specific results showcase the comparative
efficiency of algorithms with variations in training ratios.
This helps determine the type of algorithm to be used under
a certain given scenario where the illumination and the
system training scenarios are known.
3.2.1 AT&T The Database of Faces
From the results with AT&T Dataset, we observe that the
KFA algorithm has obtained the highest recognition rate as
compared to all other algorithms hence proving to be the
best method to be used for cases where the frontal view
of face with slight tilt is the sole condition for the system
environment. When the training is limited or very less, both
LDA and KFA have comparable recognition rates and can be
used interchangeably. The recognition rates of KPCA is
dwarfed as compared to KFA due to the use of ‘Kernel Trick’
in KFA.
Table - 5: Face recognition results of AT&T database
Chart 5: Face recognition results of AT&T Dataset
3.2.2 The Yale Face Database
The Yale Dataset yields out best results with KFA and LDA
algorithms hence proving to be the best method to be used
for cases where the facial expressions and the direction of
illumination varies for each subjects. This is a more robust
system environment as compared to the system
environment of AT&T Dataset.
Table - 6: Face recognition results of Yale database
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 3464
Chart 6: Face recognition results of Yale dataset
3.2.3 The Sheffield Face Database (UMIST)
The Sheffield dataset is tricky dataset when it comes to
testing any algorithm with sequential training duetothefact
that the subjects’ faces start with right profile and slowly
rotate by a constant angle until the right profile. The
training and testing images have lesser similarities as
compared to other datasets and this results in a lower
recognition rates when compared to the datasets used here.
Table - 7: Face recognition results of UMIST database
Training Set
Percentage
Algorithms
PCA KPCA KFA LDA
30% 57.19 28.06 58.89 60.83
40% 50.36 22.67 65.33 63.00
50% 48.75 18.46 65.38 63.69
60% 54.00 20.45 70.91 69.09
70% 54.29 15.00 79.38 71.88
Chart 7: Face recognition results of UMIST dataset
3. CONCLUSIONS
From the various results obtained we observe a trend in the
recognition rates of algorithms. We can generally say that as
the training ratio increases, we get a increase in first rank
recognition rate due to the system being able to identify
better features more appropriate to the classification of
images. Since the datasets used have a linear data, we
observe a steep decline in the recognition rates of nonlinear
algorithms as compared to linear algorithms.
KFA algorithm has emerged as the best algorithm among
the ones chosen for this comparative study due to the fact
that it functions efficiently in both linear and nonlinear
image subspace, majorly due to the use of ‘Kernel Trick’.
The results of The Sheffield dataset could be improved by
using non sequential training methods or by improving
the sequential training by taking alternate images for
training and testing.
REFERENCES
[1] Li, Jun-Bao, Shu-Chuan Chu, and Jeng-Shyang Pan.
"Kernel Principal Component Analysis (KPCA)-Based Face
Recognition." Kernel Learning Algorithms for Face
Recognition. Springer, New York, NY, 2014. 71-99.
[2] Kim, Kwang In, Keechul Jung, and Hang Joon Kim. "Face
recognition using kernel principalcomponentanalysis."IEEE
signal processing letters 9.2 (2002): 40-42.
[3] Li, Jun-Bao, Shu-Chuan Chu, and Jeng-Shyang Pan.
Kernel Learning Algorithms for Face Recognition. Springer,
2016.
[4] Bhattacharyya, Suman Kumar, and Kumar Rahul. "Face
recognition by linear discriminant analysis." International
Journal of Communication Network Security 2.2 (2013):
31-35.
[5] Premaratne, Prashan. Human computerinteractionusing
hand gestures. Springer Science & Business Media, 2014.
[6] Chelali, Fatma Zohra, A. Djeradi, and R. Djeradi. "Linear
discriminant analysis for face recognition." Multimedia
Computing and Systems, 2009. ICMCS'09. International
Conference on. IEEE, 2009.
[7] Mika, Sebastian, et al. "Fisher discriminant analysis with
kernels." Neural networks for signal processing IX, 1999.
Proceedings of the 1999 IEEE signal processing society
workshop.. Ieee, 1999.

Contenu connexe

Tendances

Improved Weighted Least Square Filter Based Pan Sharpening using Fuzzy Logic
Improved Weighted Least Square Filter Based Pan Sharpening using Fuzzy LogicImproved Weighted Least Square Filter Based Pan Sharpening using Fuzzy Logic
Improved Weighted Least Square Filter Based Pan Sharpening using Fuzzy LogicIRJET Journal
 
IRJET- Analysis of Vehicle Number Plate Recognition
IRJET- Analysis of Vehicle Number Plate RecognitionIRJET- Analysis of Vehicle Number Plate Recognition
IRJET- Analysis of Vehicle Number Plate RecognitionIRJET Journal
 
Independent Component Analysis of Edge Information for Face Recognition
Independent Component Analysis of Edge Information for Face RecognitionIndependent Component Analysis of Edge Information for Face Recognition
Independent Component Analysis of Edge Information for Face RecognitionCSCJournals
 
V.KARTHIKEYAN PUBLISHED ARTICLE
V.KARTHIKEYAN PUBLISHED ARTICLEV.KARTHIKEYAN PUBLISHED ARTICLE
V.KARTHIKEYAN PUBLISHED ARTICLEKARTHIKEYAN V
 
IRJET- Detection of Cataract by Statistical Features and Classification
IRJET- Detection of Cataract by Statistical Features and ClassificationIRJET- Detection of Cataract by Statistical Features and Classification
IRJET- Detection of Cataract by Statistical Features and ClassificationIRJET Journal
 
Single Image Super-Resolution Using Analytical Solution for L2-L2 Algorithm
Single Image Super-Resolution Using Analytical Solution for L2-L2 AlgorithmSingle Image Super-Resolution Using Analytical Solution for L2-L2 Algorithm
Single Image Super-Resolution Using Analytical Solution for L2-L2 Algorithmijtsrd
 
Appearance based face recognition by pca and lda
Appearance based face recognition by pca and ldaAppearance based face recognition by pca and lda
Appearance based face recognition by pca and ldaIAEME Publication
 
Artificial Intelligence based Pattern Recognition
Artificial Intelligence based Pattern RecognitionArtificial Intelligence based Pattern Recognition
Artificial Intelligence based Pattern RecognitionDr. Amarjeet Singh
 
Ieee projects 2012 2013 - Datamining
Ieee projects 2012 2013 - DataminingIeee projects 2012 2013 - Datamining
Ieee projects 2012 2013 - DataminingK Sundaresh Ka
 
Control chart pattern recognition using k mica clustering and neural networks
Control chart pattern recognition using k mica clustering and neural networksControl chart pattern recognition using k mica clustering and neural networks
Control chart pattern recognition using k mica clustering and neural networksISA Interchange
 
IRJET- A Plant Identification and Recommendation System
IRJET- A Plant Identification and Recommendation SystemIRJET- A Plant Identification and Recommendation System
IRJET- A Plant Identification and Recommendation SystemIRJET Journal
 
Threshold benchmarking for feature ranking techniques
Threshold benchmarking for feature ranking techniquesThreshold benchmarking for feature ranking techniques
Threshold benchmarking for feature ranking techniquesjournalBEEI
 
IMAGE QUALITY ASSESSMENT- A SURVEY OF RECENT APPROACHES
IMAGE QUALITY ASSESSMENT- A SURVEY OF RECENT APPROACHES IMAGE QUALITY ASSESSMENT- A SURVEY OF RECENT APPROACHES
IMAGE QUALITY ASSESSMENT- A SURVEY OF RECENT APPROACHES cscpconf
 
Improving Graph Based Model for Content Based Image Retrieval
Improving Graph Based Model for Content Based Image RetrievalImproving Graph Based Model for Content Based Image Retrieval
Improving Graph Based Model for Content Based Image RetrievalIRJET Journal
 
Analysis of Cholesterol Quantity Detection and ANN Classification
Analysis of Cholesterol Quantity Detection and ANN ClassificationAnalysis of Cholesterol Quantity Detection and ANN Classification
Analysis of Cholesterol Quantity Detection and ANN ClassificationIJCSIS Research Publications
 
A Novel Approach of Fuzzy Based Semi-Automatic Annotation for Similar Facial ...
A Novel Approach of Fuzzy Based Semi-Automatic Annotation for Similar Facial ...A Novel Approach of Fuzzy Based Semi-Automatic Annotation for Similar Facial ...
A Novel Approach of Fuzzy Based Semi-Automatic Annotation for Similar Facial ...ijsrd.com
 
On comprehensive analysis of learning algorithms on pedestrian detection usin...
On comprehensive analysis of learning algorithms on pedestrian detection usin...On comprehensive analysis of learning algorithms on pedestrian detection usin...
On comprehensive analysis of learning algorithms on pedestrian detection usin...UniversitasGadjahMada
 
Speeded-up and Compact Visual Codebook for Object Recognition
Speeded-up and Compact Visual Codebook for Object RecognitionSpeeded-up and Compact Visual Codebook for Object Recognition
Speeded-up and Compact Visual Codebook for Object RecognitionCSCJournals
 

Tendances (19)

Improved Weighted Least Square Filter Based Pan Sharpening using Fuzzy Logic
Improved Weighted Least Square Filter Based Pan Sharpening using Fuzzy LogicImproved Weighted Least Square Filter Based Pan Sharpening using Fuzzy Logic
Improved Weighted Least Square Filter Based Pan Sharpening using Fuzzy Logic
 
IRJET- Analysis of Vehicle Number Plate Recognition
IRJET- Analysis of Vehicle Number Plate RecognitionIRJET- Analysis of Vehicle Number Plate Recognition
IRJET- Analysis of Vehicle Number Plate Recognition
 
Independent Component Analysis of Edge Information for Face Recognition
Independent Component Analysis of Edge Information for Face RecognitionIndependent Component Analysis of Edge Information for Face Recognition
Independent Component Analysis of Edge Information for Face Recognition
 
V.KARTHIKEYAN PUBLISHED ARTICLE
V.KARTHIKEYAN PUBLISHED ARTICLEV.KARTHIKEYAN PUBLISHED ARTICLE
V.KARTHIKEYAN PUBLISHED ARTICLE
 
IRJET- Detection of Cataract by Statistical Features and Classification
IRJET- Detection of Cataract by Statistical Features and ClassificationIRJET- Detection of Cataract by Statistical Features and Classification
IRJET- Detection of Cataract by Statistical Features and Classification
 
Single Image Super-Resolution Using Analytical Solution for L2-L2 Algorithm
Single Image Super-Resolution Using Analytical Solution for L2-L2 AlgorithmSingle Image Super-Resolution Using Analytical Solution for L2-L2 Algorithm
Single Image Super-Resolution Using Analytical Solution for L2-L2 Algorithm
 
Appearance based face recognition by pca and lda
Appearance based face recognition by pca and ldaAppearance based face recognition by pca and lda
Appearance based face recognition by pca and lda
 
Artificial Intelligence based Pattern Recognition
Artificial Intelligence based Pattern RecognitionArtificial Intelligence based Pattern Recognition
Artificial Intelligence based Pattern Recognition
 
Ieee projects 2012 2013 - Datamining
Ieee projects 2012 2013 - DataminingIeee projects 2012 2013 - Datamining
Ieee projects 2012 2013 - Datamining
 
Control chart pattern recognition using k mica clustering and neural networks
Control chart pattern recognition using k mica clustering and neural networksControl chart pattern recognition using k mica clustering and neural networks
Control chart pattern recognition using k mica clustering and neural networks
 
F010224446
F010224446F010224446
F010224446
 
IRJET- A Plant Identification and Recommendation System
IRJET- A Plant Identification and Recommendation SystemIRJET- A Plant Identification and Recommendation System
IRJET- A Plant Identification and Recommendation System
 
Threshold benchmarking for feature ranking techniques
Threshold benchmarking for feature ranking techniquesThreshold benchmarking for feature ranking techniques
Threshold benchmarking for feature ranking techniques
 
IMAGE QUALITY ASSESSMENT- A SURVEY OF RECENT APPROACHES
IMAGE QUALITY ASSESSMENT- A SURVEY OF RECENT APPROACHES IMAGE QUALITY ASSESSMENT- A SURVEY OF RECENT APPROACHES
IMAGE QUALITY ASSESSMENT- A SURVEY OF RECENT APPROACHES
 
Improving Graph Based Model for Content Based Image Retrieval
Improving Graph Based Model for Content Based Image RetrievalImproving Graph Based Model for Content Based Image Retrieval
Improving Graph Based Model for Content Based Image Retrieval
 
Analysis of Cholesterol Quantity Detection and ANN Classification
Analysis of Cholesterol Quantity Detection and ANN ClassificationAnalysis of Cholesterol Quantity Detection and ANN Classification
Analysis of Cholesterol Quantity Detection and ANN Classification
 
A Novel Approach of Fuzzy Based Semi-Automatic Annotation for Similar Facial ...
A Novel Approach of Fuzzy Based Semi-Automatic Annotation for Similar Facial ...A Novel Approach of Fuzzy Based Semi-Automatic Annotation for Similar Facial ...
A Novel Approach of Fuzzy Based Semi-Automatic Annotation for Similar Facial ...
 
On comprehensive analysis of learning algorithms on pedestrian detection usin...
On comprehensive analysis of learning algorithms on pedestrian detection usin...On comprehensive analysis of learning algorithms on pedestrian detection usin...
On comprehensive analysis of learning algorithms on pedestrian detection usin...
 
Speeded-up and Compact Visual Codebook for Object Recognition
Speeded-up and Compact Visual Codebook for Object RecognitionSpeeded-up and Compact Visual Codebook for Object Recognition
Speeded-up and Compact Visual Codebook for Object Recognition
 

Similaire à IRJET- Comparative Study of PCA, KPCA, KFA and LDA Algorithms for Face Recognition

IRJET- Face Recognition of Criminals for Security using Principal Component A...
IRJET- Face Recognition of Criminals for Security using Principal Component A...IRJET- Face Recognition of Criminals for Security using Principal Component A...
IRJET- Face Recognition of Criminals for Security using Principal Component A...IRJET Journal
 
Comparative Study of Enchancement of Automated Student Attendance System Usin...
Comparative Study of Enchancement of Automated Student Attendance System Usin...Comparative Study of Enchancement of Automated Student Attendance System Usin...
Comparative Study of Enchancement of Automated Student Attendance System Usin...IRJET Journal
 
Survey on Feature Selection and Dimensionality Reduction Techniques
Survey on Feature Selection and Dimensionality Reduction TechniquesSurvey on Feature Selection and Dimensionality Reduction Techniques
Survey on Feature Selection and Dimensionality Reduction TechniquesIRJET Journal
 
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...IRJET Journal
 
IRJET- Human Resource and Management System Using Face Recognition
IRJET-  	  Human Resource and Management System Using Face RecognitionIRJET-  	  Human Resource and Management System Using Face Recognition
IRJET- Human Resource and Management System Using Face RecognitionIRJET Journal
 
Face Recognition Technique using ICA and LBPH
Face Recognition Technique using ICA and LBPHFace Recognition Technique using ICA and LBPH
Face Recognition Technique using ICA and LBPHIRJET Journal
 
IRJET-Comparision of PCA and LDA Techniques for Face Recognition Feature Base...
IRJET-Comparision of PCA and LDA Techniques for Face Recognition Feature Base...IRJET-Comparision of PCA and LDA Techniques for Face Recognition Feature Base...
IRJET-Comparision of PCA and LDA Techniques for Face Recognition Feature Base...IRJET Journal
 
Face recognition using laplacianfaces
Face recognition using laplacianfaces Face recognition using laplacianfaces
Face recognition using laplacianfaces StudsPlanet.com
 
Visualizing and Forecasting Stocks Using Machine Learning
Visualizing and Forecasting Stocks Using Machine LearningVisualizing and Forecasting Stocks Using Machine Learning
Visualizing and Forecasting Stocks Using Machine LearningIRJET Journal
 
Standard Statistical Feature analysis of Image Features for Facial Images usi...
Standard Statistical Feature analysis of Image Features for Facial Images usi...Standard Statistical Feature analysis of Image Features for Facial Images usi...
Standard Statistical Feature analysis of Image Features for Facial Images usi...Bulbul Agrawal
 
A Hierarchical Feature Set optimization for effective code change based Defec...
A Hierarchical Feature Set optimization for effective code change based Defec...A Hierarchical Feature Set optimization for effective code change based Defec...
A Hierarchical Feature Set optimization for effective code change based Defec...IOSR Journals
 
IRJET- Smart Classroom Attendance System: Survey
IRJET- Smart Classroom Attendance System: SurveyIRJET- Smart Classroom Attendance System: Survey
IRJET- Smart Classroom Attendance System: SurveyIRJET Journal
 
Review of Existing Methods in K-means Clustering Algorithm
Review of Existing Methods in K-means Clustering AlgorithmReview of Existing Methods in K-means Clustering Algorithm
Review of Existing Methods in K-means Clustering AlgorithmIRJET Journal
 
An Efficient Face Recognition Using Multi-Kernel Based Scale Invariant Featur...
An Efficient Face Recognition Using Multi-Kernel Based Scale Invariant Featur...An Efficient Face Recognition Using Multi-Kernel Based Scale Invariant Featur...
An Efficient Face Recognition Using Multi-Kernel Based Scale Invariant Featur...CSCJournals
 
Object Tracking By Online Discriminative Feature Selection Algorithm
Object Tracking By Online Discriminative Feature Selection AlgorithmObject Tracking By Online Discriminative Feature Selection Algorithm
Object Tracking By Online Discriminative Feature Selection AlgorithmIRJET Journal
 
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...IRJET Journal
 
Linearity of Feature Extraction Techniques for Medical Images by using Scale ...
Linearity of Feature Extraction Techniques for Medical Images by using Scale ...Linearity of Feature Extraction Techniques for Medical Images by using Scale ...
Linearity of Feature Extraction Techniques for Medical Images by using Scale ...ijtsrd
 
IRJET- Deep Learning Model to Predict Hardware Performance
IRJET- Deep Learning Model to Predict Hardware PerformanceIRJET- Deep Learning Model to Predict Hardware Performance
IRJET- Deep Learning Model to Predict Hardware PerformanceIRJET Journal
 
IRJET- Analysis of PV Fed Vector Controlled Induction Motor Drive
IRJET- Analysis of PV Fed Vector Controlled Induction Motor DriveIRJET- Analysis of PV Fed Vector Controlled Induction Motor Drive
IRJET- Analysis of PV Fed Vector Controlled Induction Motor DriveIRJET Journal
 
An Assimilated Face Recognition System with effective Gender Recognition Rate
An Assimilated Face Recognition System with effective Gender Recognition RateAn Assimilated Face Recognition System with effective Gender Recognition Rate
An Assimilated Face Recognition System with effective Gender Recognition RateIRJET Journal
 

Similaire à IRJET- Comparative Study of PCA, KPCA, KFA and LDA Algorithms for Face Recognition (20)

IRJET- Face Recognition of Criminals for Security using Principal Component A...
IRJET- Face Recognition of Criminals for Security using Principal Component A...IRJET- Face Recognition of Criminals for Security using Principal Component A...
IRJET- Face Recognition of Criminals for Security using Principal Component A...
 
Comparative Study of Enchancement of Automated Student Attendance System Usin...
Comparative Study of Enchancement of Automated Student Attendance System Usin...Comparative Study of Enchancement of Automated Student Attendance System Usin...
Comparative Study of Enchancement of Automated Student Attendance System Usin...
 
Survey on Feature Selection and Dimensionality Reduction Techniques
Survey on Feature Selection and Dimensionality Reduction TechniquesSurvey on Feature Selection and Dimensionality Reduction Techniques
Survey on Feature Selection and Dimensionality Reduction Techniques
 
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...
 
IRJET- Human Resource and Management System Using Face Recognition
IRJET-  	  Human Resource and Management System Using Face RecognitionIRJET-  	  Human Resource and Management System Using Face Recognition
IRJET- Human Resource and Management System Using Face Recognition
 
Face Recognition Technique using ICA and LBPH
Face Recognition Technique using ICA and LBPHFace Recognition Technique using ICA and LBPH
Face Recognition Technique using ICA and LBPH
 
IRJET-Comparision of PCA and LDA Techniques for Face Recognition Feature Base...
IRJET-Comparision of PCA and LDA Techniques for Face Recognition Feature Base...IRJET-Comparision of PCA and LDA Techniques for Face Recognition Feature Base...
IRJET-Comparision of PCA and LDA Techniques for Face Recognition Feature Base...
 
Face recognition using laplacianfaces
Face recognition using laplacianfaces Face recognition using laplacianfaces
Face recognition using laplacianfaces
 
Visualizing and Forecasting Stocks Using Machine Learning
Visualizing and Forecasting Stocks Using Machine LearningVisualizing and Forecasting Stocks Using Machine Learning
Visualizing and Forecasting Stocks Using Machine Learning
 
Standard Statistical Feature analysis of Image Features for Facial Images usi...
Standard Statistical Feature analysis of Image Features for Facial Images usi...Standard Statistical Feature analysis of Image Features for Facial Images usi...
Standard Statistical Feature analysis of Image Features for Facial Images usi...
 
A Hierarchical Feature Set optimization for effective code change based Defec...
A Hierarchical Feature Set optimization for effective code change based Defec...A Hierarchical Feature Set optimization for effective code change based Defec...
A Hierarchical Feature Set optimization for effective code change based Defec...
 
IRJET- Smart Classroom Attendance System: Survey
IRJET- Smart Classroom Attendance System: SurveyIRJET- Smart Classroom Attendance System: Survey
IRJET- Smart Classroom Attendance System: Survey
 
Review of Existing Methods in K-means Clustering Algorithm
Review of Existing Methods in K-means Clustering AlgorithmReview of Existing Methods in K-means Clustering Algorithm
Review of Existing Methods in K-means Clustering Algorithm
 
An Efficient Face Recognition Using Multi-Kernel Based Scale Invariant Featur...
An Efficient Face Recognition Using Multi-Kernel Based Scale Invariant Featur...An Efficient Face Recognition Using Multi-Kernel Based Scale Invariant Featur...
An Efficient Face Recognition Using Multi-Kernel Based Scale Invariant Featur...
 
Object Tracking By Online Discriminative Feature Selection Algorithm
Object Tracking By Online Discriminative Feature Selection AlgorithmObject Tracking By Online Discriminative Feature Selection Algorithm
Object Tracking By Online Discriminative Feature Selection Algorithm
 
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
 
Linearity of Feature Extraction Techniques for Medical Images by using Scale ...
Linearity of Feature Extraction Techniques for Medical Images by using Scale ...Linearity of Feature Extraction Techniques for Medical Images by using Scale ...
Linearity of Feature Extraction Techniques for Medical Images by using Scale ...
 
IRJET- Deep Learning Model to Predict Hardware Performance
IRJET- Deep Learning Model to Predict Hardware PerformanceIRJET- Deep Learning Model to Predict Hardware Performance
IRJET- Deep Learning Model to Predict Hardware Performance
 
IRJET- Analysis of PV Fed Vector Controlled Induction Motor Drive
IRJET- Analysis of PV Fed Vector Controlled Induction Motor DriveIRJET- Analysis of PV Fed Vector Controlled Induction Motor Drive
IRJET- Analysis of PV Fed Vector Controlled Induction Motor Drive
 
An Assimilated Face Recognition System with effective Gender Recognition Rate
An Assimilated Face Recognition System with effective Gender Recognition RateAn Assimilated Face Recognition System with effective Gender Recognition Rate
An Assimilated Face Recognition System with effective Gender Recognition Rate
 

Plus de IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

Plus de IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Dernier

University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...SUHANI PANDEY
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXssuser89054b
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptMsecMca
 
Intro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdfIntro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdfrs7054576148
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoordharasingh5698
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startQuintin Balsdon
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdfSuman Jyoti
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfRagavanV2
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...tanu pandey
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 

Dernier (20)

University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
Intro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdfIntro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdf
 
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 

IRJET- Comparative Study of PCA, KPCA, KFA and LDA Algorithms for Face Recognition

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 3460 ComparativeStudy of PCA, KPCA, KFA and LDAAlgorithms for Face Recognition Nitin S Prakash1, Prathviraj Shetty2, Kiran Kedilaya3 , Nithesh4, Sunil B N5 1,2,3,4,5 Dept of Computer Science and Engineering, Sahyadri College of Engineering and Management, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Face recognition is the process of identifying one or more faces in images or video clips by analysing and comparing known patterns. One of the ways to do this is by comparing selected facial features from the image andafacial database. Algorithms typically extract facial features and compare them to a database to find the best match. This has wide range of applications which includes Security, Criminal Identification, Payments, Healthcare, Marketing and so on. There are plenty of algorithms devised and used for face recognition, each having its own benefits and shortcomings. For any face recognition algorithm, the two key stages are extraction of features and their classification. In this paperwe focus on comparison between the performances of PCA, KPCA, KFA and LDA algorithms against AT&T, Yale and UMIST datasets. Key Words: PCA, KPCA, KFA, LDA, UMIST, AT&T, Yale, face recognition. 1.INTRODUCTION As humans, recognising faces is no big deal to us. But for a computer which understands only the binary language consisting of 0 and 1, it is a huge challenge to identify human faces. Humans of age 2-3 years old can recognise and distinguish between known faces distinctively. Our knowledge regarding the process of recognising faces happening inside a human brain is limited. An approach based on geometric facial features is the most innate method for recognising faces. One of the earliest approaches for face recognition was based on euclidian distance between the feature vectors of a test image and reference image. This method, even though was unaffected by change in lighting conditions, had a major setback due to the complicated task of accurately positioning marker points. Face recognition differs substantially from traditional pattern recognition problemsasthe patterntoberecognised doesn’t alter. In object recognition, the shapes of the objects change while in face recognition objects are recognisedwith the same rudimentary shape differing in colour and form. Although plenty of algorithms prevail in this domain, each having their respective utility and hiccups. While doing a comparative analysis of algorithms, it is recommended to run them against common and standard datasets. This helps in easier and efficient comparison between their performances. In pattern recognition and in image processing, feature extraction based dimensionality reduction plays an important role in the relative areas. Feature extraction simplifies the amount of resources required to describe a large set of data accurately for classification and clustering [1]. Transforming the input data into the set of features is called feature extraction. Due to the complex variations of illumination, expression, angle of view and rotation, etc.,itis difficult to describe the facial features through a single algorithm. Therefore, most of the current researcheson face recognition focus on the recognition problems under restricted conditions. A common face recognition system consists of preprocessing, feature extraction/selection, and recognition. 1.1 Principal Component Analysis (PCA) PCA is a statistical methodology used to minimise the large dimensionality of the data to manageable congenital dimensionality. This is essential to depict the data in a cost effective manner. PCA is an approach that acts in the linear space hence applications having linear prototypes such as signal processing, image processing, system and control their, communications are compatible. Compact principal components of the feature space are obtained by PCA after compressing the huge single dimensionalvectorof pixels generated from 2-Dimensional facial image. This is called eigenspace projection. By distinguishing the eigenvectors of the covariance matrix acquired from a set of vectors the eigenspace is determined. 1.2 Kernel Principal Component Analysis (KPCA) A linear transformation is not suitable for capturing the nonlinear structures of the data. In order to represent the nonlinear structure, the Kernel PCA (KPCA) has been formulated. In KPCA, the computational cost dependsonthe sample size. When the sample size is very large, it is impractical to compute the principal componentsviaadirect eigenvalue decomposition. Through adopting a polynomial kernel, the principal components can be computed within the space spanned by high- order correlations ofinputpixels making up a facial image, resulting in an improved performance [2]. The main idea of KPCA is to project the input data from the linear space into the nonlinear space and then implement PCA in the nonlinear feature space for feature extraction. In KPCA, the nonlinearity is firstly mapping the data into another space using a nonlinear map, and then, PCA is implemented using the mapped examples [3]. The mapping and the space are determined implicitly by the choice of a
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 3461 kernel function which computes the dot product between two input examples mapped into feature space via kernel function. If kernel function is a positive definite kernel, then there exists a map into a dot product space. KPCA-based feature extraction needs to store the original sample information owing to computing the kernel matrix, which leads to a huge store and a high computingconsuming [3]. It is feasible to improve the performance of KPCA with sparse analysis and kernel optimisation. We reduce the training samples with sparse analysis and then optimise kernel structure with the reduced training samples[3]. 1.3 Linear Discriminant Analysis (LDA) Linear Discriminant Analysis (LDA) has been successfully applied to face recognition which is based on a linear projection from the image space to a low dimensional space by maximising the between class scatter and minimising the within-class scatter [4]. LDA allows objective evaluation of the significanceofvisualinformation in different features of the face for identifying the human face. The LDA also provides us with a small set of features that carry the most relevant information for classification purposes. LDA method overcomes the limitation of Principle Component Analysis method by applying the linear discriminant criterion. This criterion tries to maximise the ratio of determinant of the between-class scatter matrix of the projected samples to the determinant of the within-class scatter matrix of the projected samples [4]. Linear discriminant groupsthe imagesof the sameclassand separate images of different classes. Here toidentifyaninput test image, the projected test image is compared to each projected training, and the test image is identified as the closest training image [4]. Linear discriminant analysis is primarilyusedheretoreduce the number of featuresto a more manageablenumberbefore classification. Each of the new dimensions is a linear combination of pixel values, which form a template [5]. The linear combinations obtained using Fisher’s linear discriminant are called Fisher faces, while those obtained using the related principal component analysis are called eigenfaces. There are two main phases: training and classification.Inthe training phase, a fisher space isestablished fromthetraining samples and the training faces are projected onto the same subspace. The optimal projection (transformation) can be readily computed by applying the Eigen decomposition on the scatter matrices. In the classification phase, an inputface is projected into the fisher space and classified using the Mahalanobis Cosine distance as a similarity measure [6]. 1.4 Kernel Fischer Discriminant Analysis (KFDA) KFDA (also known as KFA - Kernel Fisher Analysis) is a method that is developed from Linear Discriminant Analysis. It is a non-linear classification technique based on Fisher’sdiscriminant. The main ingredient isthekerneltrick which allows the efficient computation of Fisher discriminant in feature space [7]. The linear classification in feature space corresponds to a (powerful) non-linear decision function in input space. LDA is used to maximise the separation of data in two different classes and minimising the distance between data in the same class. The combination of LDA with kernel function cause nonlinear transformation. The benefit of KFDA is that we can process a lot of data with a high dimensional vector. A high dimensional data is reduced into the small one and then it performing a new projection vectors. The objective is that when we have to deal with a lot of data and dimensions, we can classify the data much better than only using LDA. 2. DATASETS It is recommended to pitch algorithms against a standard database to get a benchmark for their comparative analysis. We make use of the following standard datasetsfor the experimental phase: AT&T “The database of Faces” (formerly TheORL Database of Faces), The Yale Face Database and The UMIST Face Database. 2.1 AT&T The Database of Faces The AT&T face database contains a total of 400 images of 40 unique subjects with 10 images per subject. The images are greyscale and are all stored in PGM format. Each image has dimensions of 92 X 112 pixels. The images are taken from the frontal view and some of the images have a slight tilt of the head in order to introduce variations. 2.2The Sheffield (PreviouslyUMIST)FaceDatabase The Sheffield ( Previously UMIST) database contains a total of 480 images of 20 unique subjects with 24 images per subject with differences in race, gender, appearance. Each individual is shown in a range of poses ranging from right profile to left profile. The files are all in PGM format, having dimensions 220 x 220 pixels with 256-bit grey-scale. 2.3 The Yale Face Database The Yale face database contains a total of 165 images of 15 subjects with 11 images per subject. The images are all in greyscale and are stored in gif format. Each imagehas a dimension of 320 X 243 pixels. The images contain the following varying conditions: centrally lighted, with glasses, happy, left light, without glasses, normal, right light, sad, sleepy, surprised and wink. All these various conditions provide an ample amount of featurestobedetectedandused for classifications to check various aspects of the algorithm to be tested.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 3462 3 EXPERIMENTAL RESULTS Experimental results are all taken in terms of first rank recognition rate. 3.1 Algorithm Specific Algorithm specific results help us determine the performance of individual algorithms when pitched against various datasets with varying training ratios. This gives better insights into how exactly they perform under the various postures and illumination offered by the datasets. We have taken the data sequentially for training. 3.1.1 Principal Component Analysis (PCA) From the PCA algorithm results we observe that for lower training ratios the efficiency is greater for AT&T dataset indicating that the algorithm needslesstrainingtorecognise frontal region of the human face. As the training ratio increases, the result on Yale face dataset shows better recognition rate indicating an improvedfacerecognitionrate for varying facial features and making the system more robust Table 1: Face recognition rates of PCA Chart 1: Face recognition rates of PCA 3.1.2 Kernel Principal ComponentAnalysis (KPCA) From the KPCA algorithm results we observe that for lower training ratios the efficiency is greater for AT&T dataset indicating that the algorithm needslesstrainingtorecognise frontal region of the human face. As the training ratio increases, the result on Yale face dataset shows better recognition rate indicating an improvedfacerecognitionrate for varying facial features and making the system more robust. The overall efficiency is low due to the fact that the algorithm is designed for non linear data and the data we use is of linear nature. Table 2: Face recognition rates of KPCA Chart 2: Face recognition rates of KPCA 3.1.3 Kernel Fischer DiscriminantAnalysis (KFDA) The KDFA algorithm showcases greater recognition rates for lower training ratios of AT&T dataset as compared to the rest of datasets. With the increase in training ratio, it shows comparable efficiency in recognition with Yale dataset. We observe a steep decrease in recognition rate when it comes to UMIST dataset due to the nature of UMIST dataset and majorly due to the fact that the data is read sequentially. KFDA also shows the highest recognition rates ascompares to other algorithmsunder considerationwitha maximum recognition rate of 96.67% on AT&T and Yale datasets for training ratio of 70%. Table 3: Face recognition results of KFDA
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 3463 Chart 3: Face recognition results of KFDA 3.1.4 Linear Discriminant Analysis (LDA) When it comes to LDA, we observe a steady increase in recognition rates for all the three datasets. Yale dataset shows maximum increase in efficiency followed by UMIST and AT&T. Even though AT&T shows least amount of increase in recognition rates, it still has maximum recognition rate up until 60% training ratio which is the dwarfed by recognition rate for Yale dataset at 96.67%. Table 4: Face recognition rate of LDA Chart 4: Face recognition rate of LDA 3.2 Dataset Specific Dataset specific results showcase the comparative efficiency of algorithms with variations in training ratios. This helps determine the type of algorithm to be used under a certain given scenario where the illumination and the system training scenarios are known. 3.2.1 AT&T The Database of Faces From the results with AT&T Dataset, we observe that the KFA algorithm has obtained the highest recognition rate as compared to all other algorithms hence proving to be the best method to be used for cases where the frontal view of face with slight tilt is the sole condition for the system environment. When the training is limited or very less, both LDA and KFA have comparable recognition rates and can be used interchangeably. The recognition rates of KPCA is dwarfed as compared to KFA due to the use of ‘Kernel Trick’ in KFA. Table - 5: Face recognition results of AT&T database Chart 5: Face recognition results of AT&T Dataset 3.2.2 The Yale Face Database The Yale Dataset yields out best results with KFA and LDA algorithms hence proving to be the best method to be used for cases where the facial expressions and the direction of illumination varies for each subjects. This is a more robust system environment as compared to the system environment of AT&T Dataset. Table - 6: Face recognition results of Yale database
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 3464 Chart 6: Face recognition results of Yale dataset 3.2.3 The Sheffield Face Database (UMIST) The Sheffield dataset is tricky dataset when it comes to testing any algorithm with sequential training duetothefact that the subjects’ faces start with right profile and slowly rotate by a constant angle until the right profile. The training and testing images have lesser similarities as compared to other datasets and this results in a lower recognition rates when compared to the datasets used here. Table - 7: Face recognition results of UMIST database Training Set Percentage Algorithms PCA KPCA KFA LDA 30% 57.19 28.06 58.89 60.83 40% 50.36 22.67 65.33 63.00 50% 48.75 18.46 65.38 63.69 60% 54.00 20.45 70.91 69.09 70% 54.29 15.00 79.38 71.88 Chart 7: Face recognition results of UMIST dataset 3. CONCLUSIONS From the various results obtained we observe a trend in the recognition rates of algorithms. We can generally say that as the training ratio increases, we get a increase in first rank recognition rate due to the system being able to identify better features more appropriate to the classification of images. Since the datasets used have a linear data, we observe a steep decline in the recognition rates of nonlinear algorithms as compared to linear algorithms. KFA algorithm has emerged as the best algorithm among the ones chosen for this comparative study due to the fact that it functions efficiently in both linear and nonlinear image subspace, majorly due to the use of ‘Kernel Trick’. The results of The Sheffield dataset could be improved by using non sequential training methods or by improving the sequential training by taking alternate images for training and testing. REFERENCES [1] Li, Jun-Bao, Shu-Chuan Chu, and Jeng-Shyang Pan. "Kernel Principal Component Analysis (KPCA)-Based Face Recognition." Kernel Learning Algorithms for Face Recognition. Springer, New York, NY, 2014. 71-99. [2] Kim, Kwang In, Keechul Jung, and Hang Joon Kim. "Face recognition using kernel principalcomponentanalysis."IEEE signal processing letters 9.2 (2002): 40-42. [3] Li, Jun-Bao, Shu-Chuan Chu, and Jeng-Shyang Pan. Kernel Learning Algorithms for Face Recognition. Springer, 2016. [4] Bhattacharyya, Suman Kumar, and Kumar Rahul. "Face recognition by linear discriminant analysis." International Journal of Communication Network Security 2.2 (2013): 31-35. [5] Premaratne, Prashan. Human computerinteractionusing hand gestures. Springer Science & Business Media, 2014. [6] Chelali, Fatma Zohra, A. Djeradi, and R. Djeradi. "Linear discriminant analysis for face recognition." Multimedia Computing and Systems, 2009. ICMCS'09. International Conference on. IEEE, 2009. [7] Mika, Sebastian, et al. "Fisher discriminant analysis with kernels." Neural networks for signal processing IX, 1999. Proceedings of the 1999 IEEE signal processing society workshop.. Ieee, 1999.