SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 08 | Aug -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1005
Linear Discriminant Analysis for Human Face Recognition
Mr. Rahul M. Ohol1, Mrs. Shilpa R. Ohol2
1Lecturer, Dept. Of Medical Electronics Govt. Polytechnic Miraj, Maharashtra, India
2 Asst. Professor, Dept. Of Mathematics P.V.P.I.Technology, Sangli, Maharashtra, India
----------------------------------------------------------------------------------***------------------------------------------------------------------------------
Abstract – There are many possible techniques for
classification of data. PrincipalComponentAnalysis(PCA) and
Linear Discriminant Analysis (LDA) are two commonly used
techniques for data classification and dimensionality
reduction. LinearDiscriminantAnalysiseasilyhandlesthe case
where the within-class frequencies are unequal and their
performance has been examined on randomly generated test
data. This method maximizes the ratio of between-class
variance to the within-classvarianceinanyparticulardataset
thereby guaranteeing maximal separability. The useof Linear
Discriminant Analysis for data classification is applied to
classification problem in face recognition and speech
recognition.
Key Words: Principal Component Analysis(PCA),Linear
Discriminant Analysis (LDA), face recognition, data
classification
1. INTRODUCTION
Biometrics is an old Greek word, “Bio”, meaning life and
“Metric” the measure of, so Biometrics is in essence, the
measure of life. Simply defined, Biometrics is the automated
use of physiological or behavioural characteristics to
determine or verify identity of a person.A concise definition
of biometrics is “The automatic recognitionofa personusing
distinguishing traits.” A more expansive definition of
biometrics is “Any automatically measurable, robust and
distinctive physical characteristic or personal trait that can
be used to identify an individual or verify the claimed
identity of an individual.” This definition requires
elaboration. Biometrics is the science of verifying the
identity of an individual through physiological
measurements or behavioural traits. Since biometric
identifiers are associated permanently with the user and
they are more reliable than token or knowledge based
authentication methods. Biometrics offers several
advantages over traditional security measures [1].
1.1 Why Face Recognition?
Among the biometrics, the face is the most natural
physiological characteristic to recognize each other. Hence,
people consider face a “good” biometric for automatic
identity recognition systems.There are a number of reasons
to choose face recognition. These are as follows
 It is non-intrusive and requires no physical
interaction on behalf of the user.The system
captures faces of people in public areas, which
minimizes legal concerns for reasons explained
below. Moreover, since faces can be captured from
some distance away, facial recognition canbedone
without any physical contact.
 The acquisition process can be performed with a
limited person cooperation.
 It is accurate and allows for high enrolment and
verification rates.
 It does not require an expert to interpret the
comparisons.
 It can use the existing hardware infrastructure i.e.
existing cameras and image capture devices.
 It is the only biometric technology that allows you
to perform passive identification in a one-to-many
environment.
2 Linear Discriminant Analysis(LDA)
Originally developed in 1936 by R.A. Fisher, discriminant
analysis is a classic method of classification that has stood
the test of time. Discriminant analysisoftenproducesmodels
whose accuracyapproaches (andoccasionallyexceeds)more
complex modern methods.Discriminantanalysiscanbeused
only for classification (i.e., witha categorical targetvariable),
not for regression. The target variablemayhavetwoormore
categories. It is also known as Fisher Discriminant Analysis
(FDA).
2.1 Defination of groups
The groups to be discriminated can be defined either
naturally by the problem under investigation, or by some
preceding analysis, such as a cluster analysis. The number of
groups is not restricted to two, although the discrimination
between two groups isthemostcommonapproach.Notethat
the number of groups must not exceed the number of
variables describing the data set. Anotherprerequisiteisthat
the groups have the samecovariancestructure(i.e.theymust
be comparable).
Fig -1: Cluster analysis
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 08 | Aug -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1006
2.2 Estimation of the parameters of the
discriminating function
There is only one direction of the discriminating line which
yields the best separation results. The determination of the
coefficients of the discriminating function is quite simple. In
principle, the discriminating function is formed in such a
way that the separation (=distance) between the groups is
maximized, and the distance within thegroupsisminimized.
A transformation function is found that maximizes the ratio
of between-class variance to within-class variance as
illustrated by this figure 4.4
Fig -2: Good class seperation
The transformation seeks to rotate the axes so that when
the categories are projected on the new axes, the differences
between the groups are maximized. The following figure
shows two rotates axes. Projection to the lower right axis
achieves the maximum separation between the categories;
projection to the lower left axis yields the worst separation.
Fig -3: Class feature data
2.3 Mathematical Operations
Fisher discriminates group images of the same class and
separates images of different classes. Images are projected
from N-dimensional space (where N is the number of pixels
in the image) to C-1 dimensional space (where C is the
number of classes of images). Forexample,considertwosets
of points in 2-dimensional space that are projected onto a
single line. Depending on the direction of the line, the points
can either be mixed together or separated. Fisher
discriminants find the line that best separates the points. To
identify a test image, the projected test imageiscompared to
each projected training image, and the test image is
identified as the closest training image.
As with eigenspace projection, training images are
projected into a subspace. The test images are projectedinto
the same subspace and identified usinga similaritymeasure.
What differs is how the subspace is calculated.Following are
the steps to follow to find the Fisher discriminants for a set
of images.
2.3.1 Calculate the within class scatter matrix
The within class scatter matrix measures the amount of
scatter between items in the same class. For the i thclass, a
scattermatrix (Si ) is calculated as the sum of the covariance
matrices of the centered images in that class.
T
xix
mixmixSi 
 ))((
mi is the mean of images in the class. The withinclassscatter
matrix (SW) is the sum of all scatter matrices.
i
c
i
W SS 

1
C is the number of classes.
2.3.2 Calculate the between class scatter matrix
The between class scatter matrix ( SB ) measurestheamount
of scatter between classes. It is calculated as the sum of the
covariance matrices ofthedifference betweenthetotal mean
and the mean of each class.


c
i
T
B mmimminiS
1
))((
where ni is the number of images in the class, mi is the
mean of the images in the class and m is the mean of all the
images.
2.3.3 Solve the generalized eigenvalue problem
Solve for the generalized eigenvectors (V ) and eigenvalues
() of the within class and between class scatter matrices.
VSVS WB 
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 08 | Aug -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1007
2.3.4 Keep first C-l eigenvectors
Sort the eigenvectors by their associated eigenvalues from
high to low and keep the first C 1 eigenvectors. These
eigenvectors form the Fisher basis vectors.
2.3.5 Project images onto Fisher basis vectors
Project all the original (i.e. not centered)
images onto the Fisher basis vectors by calculating the dot
product of the image with each of the Fisher basis vectors.
The original images are projected onto this line because
these are the points that the line has been created to
discriminate, not the centered images.
Following are the steps to follow to find the Fisher
discriminants of a set of imagesbyfirst projectingtheimages
into any orthonormal basis.
1. Compute means Compute the mean of the imagesineach
class( mi )and the total mean of all images (m ).
2. Center the images in each class Subtract the mean of
each class from the images in that class.
3.Center the class means Subtract the total mean from the
class means.
4. Create a data matrix Combine the all images, side-by-
side, into one data matrix.
5.Find an orthonormal basis for thisdatamatrix Thiscan
be accomplished by using a QR Orthogonal-triangular
decomposition or by calculating the full set of eigenvectors
of the covariance matrix of the training data. Let the
orthonormal basis be U
6. Project all centered imagesintotheorthonormalbasis
Create vectors that are the dot product of the image and the
vectors in the orthonormal basis.
7. Project the centered means into the orthonormal
basis
8. Calculate the within class scatter matrix The within
class scatter matrix measures theamountofscatterbetween
items within the same class. For the ith class a scatter matrix
(Si ) is calculated as the sum of the covariance matrices of
the projected centered images for that class.
9. Calculate the between class scatter matrix The
between class scatter matrix (SB )
measures the amount of scatter between classes. It is
calculated as the sum of the covariance matrices of the
projected centered means of the classes, weighted by the
number of images in each class.
10. Solve the generalized eigenvalue problem
11. Keep the first C-l eigenvectors Sorttheeigenvectorsby
their associated eigenvalues from high to low and keep the
first C -1 eigenvectors. These are the Fisher basis vectors.
12. Project images onto eigenvectors: Project all the
rotated original (i.e. not centered)
images onto the Fisher basis vectors. First project the
original images into the orthonormal basis, and then project
these projected images onto the Fisher basis vectors. The
original rotated images are projected onto this line because
these are the points that the line has been created to
discriminate, not the centered images.
3. CONCLUSIONS
LDA attempt to maximize the between class scatter, while
minimizing the within class scatter. In other words, moves
images of the same class closer together, while moving
images of different classes furtherapart. Lightingconditions,
Image quality, Pose orientation plays an important role in
face recognition system
REFERENCES
[1] John D. Woodward, Jr., Christopher Horn, Julius Gatune
and Aryn Thomas, Biometrics A Look at Facial
Recognition, Prepared for the Virginia State Crime
Commission, Published by RAND,(2003).
[2]Gian Luca Marcialis and Fabio Roli, “Decision - level
fusion of PCA and LDA-based face recognition
algorithms,” International Journal of Image and Graphics,
Vol. 6, No.2, pp 293-311, (2006).
[3]Juwei Lu, Kostantinos N. Plataniotis, and Anastasios N.
Venetsanopoulos, “Face Recognition Using LDA-Based
Algorithms,” IEEE Transactions on Neural Networks,
Vol. 14, No.1, January 2003.
[4] A tutorial on Principal Component Analysis by Lindsay I
Smith February 26,2002

More Related Content

PDF
International Journal of Biometrics and Bioinformatics(IJBB) Volume (2) Issue...
CSCJournals
 
PDF
IRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET Journal
 
PDF
FINGERPRINT MATCHING USING HYBRID SHAPE AND ORIENTATION DESCRIPTOR -AN IMPROV...
IJCI JOURNAL
 
PDF
An evaluation approach for detection of contours with 4 d images a review
eSAT Journals
 
PDF
IRJET - Facial Recognition based Attendance System with LBPH
IRJET Journal
 
PDF
NEURAL NETWORK BASED SUPERVISED SELF ORGANIZING MAPS FOR FACE RECOGNITION
ijsc
 
PDF
QPLC: A Novel Multimodal Biometric Score Fusion Method
CSCJournals
 
PDF
A study of multimodal biometric system
eSAT Publishing House
 
International Journal of Biometrics and Bioinformatics(IJBB) Volume (2) Issue...
CSCJournals
 
IRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET Journal
 
FINGERPRINT MATCHING USING HYBRID SHAPE AND ORIENTATION DESCRIPTOR -AN IMPROV...
IJCI JOURNAL
 
An evaluation approach for detection of contours with 4 d images a review
eSAT Journals
 
IRJET - Facial Recognition based Attendance System with LBPH
IRJET Journal
 
NEURAL NETWORK BASED SUPERVISED SELF ORGANIZING MAPS FOR FACE RECOGNITION
ijsc
 
QPLC: A Novel Multimodal Biometric Score Fusion Method
CSCJournals
 
A study of multimodal biometric system
eSAT Publishing House
 

What's hot (19)

PDF
An Assimilated Face Recognition System with effective Gender Recognition Rate
IRJET Journal
 
PDF
A brief review of segmentation methods for medical
eSAT Publishing House
 
PDF
A brief review of segmentation methods for medical images
eSAT Journals
 
PDF
Effective face feature for human identification
eSAT Publishing House
 
PDF
An interactive image segmentation using multiple user input’s
eSAT Publishing House
 
PDF
11.similarity of inference face matching on angle oriented face recognition
Alexander Decker
 
PDF
similarity of inference face matching on angle oriented face recognition
Alexander Decker
 
PDF
An optimal face recoginition tool
eSAT Publishing House
 
PDF
A New Approach of Iris Detection and Recognition
IJECEIAES
 
PDF
Face Recognition using Feature Descriptors and Classifiers
Journal For Research
 
PDF
MIP AND UNSUPERVISED CLUSTERING FOR THE DETECTION OF BRAIN TUMOUR CELLS
AM Publications
 
PDF
Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...
Vladimir Kulyukin
 
PDF
COMPRESSION BASED FACE RECOGNITION USING TRANSFORM DOMAIN FEATURES FUSED AT M...
sipij
 
PDF
IRJET-Vision Based Occupant Detection in Unattended Vehicle
IRJET Journal
 
PDF
EDGE DETECTION OF MICROSCOPIC IMAGE
IAEME Publication
 
PDF
Design of face recognition system using principal
eSAT Publishing House
 
PDF
Face Recognition Using Simplified Fuzzy Artmap
sipij
 
PDF
23-02-03[1]
Shinyoung Lim
 
PDF
LITERATURE SURVEY ON SPARSE REPRESENTATION FOR NEURAL NETWORK BASED FACE DETE...
csijjournal
 
An Assimilated Face Recognition System with effective Gender Recognition Rate
IRJET Journal
 
A brief review of segmentation methods for medical
eSAT Publishing House
 
A brief review of segmentation methods for medical images
eSAT Journals
 
Effective face feature for human identification
eSAT Publishing House
 
An interactive image segmentation using multiple user input’s
eSAT Publishing House
 
11.similarity of inference face matching on angle oriented face recognition
Alexander Decker
 
similarity of inference face matching on angle oriented face recognition
Alexander Decker
 
An optimal face recoginition tool
eSAT Publishing House
 
A New Approach of Iris Detection and Recognition
IJECEIAES
 
Face Recognition using Feature Descriptors and Classifiers
Journal For Research
 
MIP AND UNSUPERVISED CLUSTERING FOR THE DETECTION OF BRAIN TUMOUR CELLS
AM Publications
 
Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...
Vladimir Kulyukin
 
COMPRESSION BASED FACE RECOGNITION USING TRANSFORM DOMAIN FEATURES FUSED AT M...
sipij
 
IRJET-Vision Based Occupant Detection in Unattended Vehicle
IRJET Journal
 
EDGE DETECTION OF MICROSCOPIC IMAGE
IAEME Publication
 
Design of face recognition system using principal
eSAT Publishing House
 
Face Recognition Using Simplified Fuzzy Artmap
sipij
 
23-02-03[1]
Shinyoung Lim
 
LITERATURE SURVEY ON SPARSE REPRESENTATION FOR NEURAL NETWORK BASED FACE DETE...
csijjournal
 
Ad

Similar to Linear Discriminant Analysis for Human Face Recognition (20)

PDF
Brain Tumor Classification using Support Vector Machine
IRJET Journal
 
PDF
Application of gaussian filter with principal component analysis
IAEME Publication
 
PDF
Application of gaussian filter with principal component analysis
IAEME Publication
 
PDF
Ijebea14 276
Iasir Journals
 
PDF
Automatic Detection of Radius of Bone Fracture
IRJET Journal
 
PDF
A novel medical image segmentation and classification using combined feature ...
eSAT Journals
 
PDF
IRJET-Analysis of Face Recognition System for Different Classifier
IRJET Journal
 
PDF
Face Recognition using PCA and Eigen Face Approach
IRJET Journal
 
PDF
An Effective Attendance Management System using Face Recognition
IRJET Journal
 
PDF
Segmentation and Classification of MRI Brain Tumor
IRJET Journal
 
PDF
A survey on content based medical image retrieval for
eSAT Publishing House
 
PDF
Medical Image segmentation using Image Mining concepts
Editor IJMTER
 
PDF
Improved Weighted Least Square Filter Based Pan Sharpening using Fuzzy Logic
IRJET Journal
 
PDF
Feature selection using modified particle swarm optimisation for face recogni...
eSAT Journals
 
PDF
IRJET - Gender and Age Prediction using Wideresnet Architecture
IRJET Journal
 
PDF
IRJET- A Plant Identification and Recommendation System
IRJET Journal
 
PDF
Detection of Attentiveness from Periocular Information
IRJET Journal
 
PDF
Criminal Identification using Arm7
IRJET Journal
 
PDF
IRJET- Survey on Face Recognition using Biometrics
IRJET Journal
 
PDF
IRJET- Face Recognition of Criminals for Security using Principal Component A...
IRJET Journal
 
Brain Tumor Classification using Support Vector Machine
IRJET Journal
 
Application of gaussian filter with principal component analysis
IAEME Publication
 
Application of gaussian filter with principal component analysis
IAEME Publication
 
Ijebea14 276
Iasir Journals
 
Automatic Detection of Radius of Bone Fracture
IRJET Journal
 
A novel medical image segmentation and classification using combined feature ...
eSAT Journals
 
IRJET-Analysis of Face Recognition System for Different Classifier
IRJET Journal
 
Face Recognition using PCA and Eigen Face Approach
IRJET Journal
 
An Effective Attendance Management System using Face Recognition
IRJET Journal
 
Segmentation and Classification of MRI Brain Tumor
IRJET Journal
 
A survey on content based medical image retrieval for
eSAT Publishing House
 
Medical Image segmentation using Image Mining concepts
Editor IJMTER
 
Improved Weighted Least Square Filter Based Pan Sharpening using Fuzzy Logic
IRJET Journal
 
Feature selection using modified particle swarm optimisation for face recogni...
eSAT Journals
 
IRJET - Gender and Age Prediction using Wideresnet Architecture
IRJET Journal
 
IRJET- A Plant Identification and Recommendation System
IRJET Journal
 
Detection of Attentiveness from Periocular Information
IRJET Journal
 
Criminal Identification using Arm7
IRJET Journal
 
IRJET- Survey on Face Recognition using Biometrics
IRJET Journal
 
IRJET- Face Recognition of Criminals for Security using Principal Component A...
IRJET Journal
 
Ad

More from IRJET Journal (20)

PDF
Enhanced heart disease prediction using SKNDGR ensemble Machine Learning Model
IRJET Journal
 
PDF
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
IRJET Journal
 
PDF
Kiona – A Smart Society Automation Project
IRJET Journal
 
PDF
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
IRJET Journal
 
PDF
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
IRJET Journal
 
PDF
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
IRJET Journal
 
PDF
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
IRJET Journal
 
PDF
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
IRJET Journal
 
PDF
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
IRJET Journal
 
PDF
BRAIN TUMOUR DETECTION AND CLASSIFICATION
IRJET Journal
 
PDF
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
IRJET Journal
 
PDF
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
IRJET Journal
 
PDF
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
IRJET Journal
 
PDF
Breast Cancer Detection using Computer Vision
IRJET Journal
 
PDF
Auto-Charging E-Vehicle with its battery Management.
IRJET Journal
 
PDF
Analysis of high energy charge particle in the Heliosphere
IRJET Journal
 
PDF
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
IRJET Journal
 
PDF
Auto-Charging E-Vehicle with its battery Management.
IRJET Journal
 
PDF
Analysis of high energy charge particle in the Heliosphere
IRJET Journal
 
PDF
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
IRJET Journal
 
Enhanced heart disease prediction using SKNDGR ensemble Machine Learning Model
IRJET Journal
 
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
IRJET Journal
 
Kiona – A Smart Society Automation Project
IRJET Journal
 
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
IRJET Journal
 
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
IRJET Journal
 
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
IRJET Journal
 
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
IRJET Journal
 
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
IRJET Journal
 
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
IRJET Journal
 
BRAIN TUMOUR DETECTION AND CLASSIFICATION
IRJET Journal
 
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
IRJET Journal
 
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
IRJET Journal
 
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
IRJET Journal
 
Breast Cancer Detection using Computer Vision
IRJET Journal
 
Auto-Charging E-Vehicle with its battery Management.
IRJET Journal
 
Analysis of high energy charge particle in the Heliosphere
IRJET Journal
 
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
IRJET Journal
 
Auto-Charging E-Vehicle with its battery Management.
IRJET Journal
 
Analysis of high energy charge particle in the Heliosphere
IRJET Journal
 
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
IRJET Journal
 

Recently uploaded (20)

PDF
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
PPT
1. SYSTEMS, ROLES, AND DEVELOPMENT METHODOLOGIES.ppt
zilow058
 
PDF
Construction of a Thermal Vacuum Chamber for Environment Test of Triple CubeS...
2208441
 
PDF
Cryptography and Information :Security Fundamentals
Dr. Madhuri Jawale
 
PDF
LEAP-1B presedntation xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
hatem173148
 
PDF
CAD-CAM U-1 Combined Notes_57761226_2025_04_22_14_40.pdf
shailendrapratap2002
 
PDF
Biodegradable Plastics: Innovations and Market Potential (www.kiu.ac.ug)
publication11
 
PPTX
database slide on modern techniques for optimizing database queries.pptx
aky52024
 
PDF
Zero Carbon Building Performance standard
BassemOsman1
 
PDF
top-5-use-cases-for-splunk-security-analytics.pdf
yaghutialireza
 
PDF
Advanced LangChain & RAG: Building a Financial AI Assistant with Real-Time Data
Soufiane Sejjari
 
PPTX
MULTI LEVEL DATA TRACKING USING COOJA.pptx
dollysharma12ab
 
PDF
Machine Learning All topics Covers In This Single Slides
AmritTiwari19
 
PDF
Packaging Tips for Stainless Steel Tubes and Pipes
heavymetalsandtubes
 
PDF
Introduction to Ship Engine Room Systems.pdf
Mahmoud Moghtaderi
 
PDF
All chapters of Strength of materials.ppt
girmabiniyam1234
 
PDF
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
PDF
STUDY OF NOVEL CHANNEL MATERIALS USING III-V COMPOUNDS WITH VARIOUS GATE DIEL...
ijoejnl
 
PDF
2010_Book_EnvironmentalBioengineering (1).pdf
EmilianoRodriguezTll
 
PDF
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
1. SYSTEMS, ROLES, AND DEVELOPMENT METHODOLOGIES.ppt
zilow058
 
Construction of a Thermal Vacuum Chamber for Environment Test of Triple CubeS...
2208441
 
Cryptography and Information :Security Fundamentals
Dr. Madhuri Jawale
 
LEAP-1B presedntation xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
hatem173148
 
CAD-CAM U-1 Combined Notes_57761226_2025_04_22_14_40.pdf
shailendrapratap2002
 
Biodegradable Plastics: Innovations and Market Potential (www.kiu.ac.ug)
publication11
 
database slide on modern techniques for optimizing database queries.pptx
aky52024
 
Zero Carbon Building Performance standard
BassemOsman1
 
top-5-use-cases-for-splunk-security-analytics.pdf
yaghutialireza
 
Advanced LangChain & RAG: Building a Financial AI Assistant with Real-Time Data
Soufiane Sejjari
 
MULTI LEVEL DATA TRACKING USING COOJA.pptx
dollysharma12ab
 
Machine Learning All topics Covers In This Single Slides
AmritTiwari19
 
Packaging Tips for Stainless Steel Tubes and Pipes
heavymetalsandtubes
 
Introduction to Ship Engine Room Systems.pdf
Mahmoud Moghtaderi
 
All chapters of Strength of materials.ppt
girmabiniyam1234
 
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
STUDY OF NOVEL CHANNEL MATERIALS USING III-V COMPOUNDS WITH VARIOUS GATE DIEL...
ijoejnl
 
2010_Book_EnvironmentalBioengineering (1).pdf
EmilianoRodriguezTll
 
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 

Linear Discriminant Analysis for Human Face Recognition

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 08 | Aug -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1005 Linear Discriminant Analysis for Human Face Recognition Mr. Rahul M. Ohol1, Mrs. Shilpa R. Ohol2 1Lecturer, Dept. Of Medical Electronics Govt. Polytechnic Miraj, Maharashtra, India 2 Asst. Professor, Dept. Of Mathematics P.V.P.I.Technology, Sangli, Maharashtra, India ----------------------------------------------------------------------------------***------------------------------------------------------------------------------ Abstract – There are many possible techniques for classification of data. PrincipalComponentAnalysis(PCA) and Linear Discriminant Analysis (LDA) are two commonly used techniques for data classification and dimensionality reduction. LinearDiscriminantAnalysiseasilyhandlesthe case where the within-class frequencies are unequal and their performance has been examined on randomly generated test data. This method maximizes the ratio of between-class variance to the within-classvarianceinanyparticulardataset thereby guaranteeing maximal separability. The useof Linear Discriminant Analysis for data classification is applied to classification problem in face recognition and speech recognition. Key Words: Principal Component Analysis(PCA),Linear Discriminant Analysis (LDA), face recognition, data classification 1. INTRODUCTION Biometrics is an old Greek word, “Bio”, meaning life and “Metric” the measure of, so Biometrics is in essence, the measure of life. Simply defined, Biometrics is the automated use of physiological or behavioural characteristics to determine or verify identity of a person.A concise definition of biometrics is “The automatic recognitionofa personusing distinguishing traits.” A more expansive definition of biometrics is “Any automatically measurable, robust and distinctive physical characteristic or personal trait that can be used to identify an individual or verify the claimed identity of an individual.” This definition requires elaboration. Biometrics is the science of verifying the identity of an individual through physiological measurements or behavioural traits. Since biometric identifiers are associated permanently with the user and they are more reliable than token or knowledge based authentication methods. Biometrics offers several advantages over traditional security measures [1]. 1.1 Why Face Recognition? Among the biometrics, the face is the most natural physiological characteristic to recognize each other. Hence, people consider face a “good” biometric for automatic identity recognition systems.There are a number of reasons to choose face recognition. These are as follows  It is non-intrusive and requires no physical interaction on behalf of the user.The system captures faces of people in public areas, which minimizes legal concerns for reasons explained below. Moreover, since faces can be captured from some distance away, facial recognition canbedone without any physical contact.  The acquisition process can be performed with a limited person cooperation.  It is accurate and allows for high enrolment and verification rates.  It does not require an expert to interpret the comparisons.  It can use the existing hardware infrastructure i.e. existing cameras and image capture devices.  It is the only biometric technology that allows you to perform passive identification in a one-to-many environment. 2 Linear Discriminant Analysis(LDA) Originally developed in 1936 by R.A. Fisher, discriminant analysis is a classic method of classification that has stood the test of time. Discriminant analysisoftenproducesmodels whose accuracyapproaches (andoccasionallyexceeds)more complex modern methods.Discriminantanalysiscanbeused only for classification (i.e., witha categorical targetvariable), not for regression. The target variablemayhavetwoormore categories. It is also known as Fisher Discriminant Analysis (FDA). 2.1 Defination of groups The groups to be discriminated can be defined either naturally by the problem under investigation, or by some preceding analysis, such as a cluster analysis. The number of groups is not restricted to two, although the discrimination between two groups isthemostcommonapproach.Notethat the number of groups must not exceed the number of variables describing the data set. Anotherprerequisiteisthat the groups have the samecovariancestructure(i.e.theymust be comparable). Fig -1: Cluster analysis
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 08 | Aug -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1006 2.2 Estimation of the parameters of the discriminating function There is only one direction of the discriminating line which yields the best separation results. The determination of the coefficients of the discriminating function is quite simple. In principle, the discriminating function is formed in such a way that the separation (=distance) between the groups is maximized, and the distance within thegroupsisminimized. A transformation function is found that maximizes the ratio of between-class variance to within-class variance as illustrated by this figure 4.4 Fig -2: Good class seperation The transformation seeks to rotate the axes so that when the categories are projected on the new axes, the differences between the groups are maximized. The following figure shows two rotates axes. Projection to the lower right axis achieves the maximum separation between the categories; projection to the lower left axis yields the worst separation. Fig -3: Class feature data 2.3 Mathematical Operations Fisher discriminates group images of the same class and separates images of different classes. Images are projected from N-dimensional space (where N is the number of pixels in the image) to C-1 dimensional space (where C is the number of classes of images). Forexample,considertwosets of points in 2-dimensional space that are projected onto a single line. Depending on the direction of the line, the points can either be mixed together or separated. Fisher discriminants find the line that best separates the points. To identify a test image, the projected test imageiscompared to each projected training image, and the test image is identified as the closest training image. As with eigenspace projection, training images are projected into a subspace. The test images are projectedinto the same subspace and identified usinga similaritymeasure. What differs is how the subspace is calculated.Following are the steps to follow to find the Fisher discriminants for a set of images. 2.3.1 Calculate the within class scatter matrix The within class scatter matrix measures the amount of scatter between items in the same class. For the i thclass, a scattermatrix (Si ) is calculated as the sum of the covariance matrices of the centered images in that class. T xix mixmixSi   ))(( mi is the mean of images in the class. The withinclassscatter matrix (SW) is the sum of all scatter matrices. i c i W SS   1 C is the number of classes. 2.3.2 Calculate the between class scatter matrix The between class scatter matrix ( SB ) measurestheamount of scatter between classes. It is calculated as the sum of the covariance matrices ofthedifference betweenthetotal mean and the mean of each class.   c i T B mmimminiS 1 ))(( where ni is the number of images in the class, mi is the mean of the images in the class and m is the mean of all the images. 2.3.3 Solve the generalized eigenvalue problem Solve for the generalized eigenvectors (V ) and eigenvalues () of the within class and between class scatter matrices. VSVS WB 
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 08 | Aug -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1007 2.3.4 Keep first C-l eigenvectors Sort the eigenvectors by their associated eigenvalues from high to low and keep the first C 1 eigenvectors. These eigenvectors form the Fisher basis vectors. 2.3.5 Project images onto Fisher basis vectors Project all the original (i.e. not centered) images onto the Fisher basis vectors by calculating the dot product of the image with each of the Fisher basis vectors. The original images are projected onto this line because these are the points that the line has been created to discriminate, not the centered images. Following are the steps to follow to find the Fisher discriminants of a set of imagesbyfirst projectingtheimages into any orthonormal basis. 1. Compute means Compute the mean of the imagesineach class( mi )and the total mean of all images (m ). 2. Center the images in each class Subtract the mean of each class from the images in that class. 3.Center the class means Subtract the total mean from the class means. 4. Create a data matrix Combine the all images, side-by- side, into one data matrix. 5.Find an orthonormal basis for thisdatamatrix Thiscan be accomplished by using a QR Orthogonal-triangular decomposition or by calculating the full set of eigenvectors of the covariance matrix of the training data. Let the orthonormal basis be U 6. Project all centered imagesintotheorthonormalbasis Create vectors that are the dot product of the image and the vectors in the orthonormal basis. 7. Project the centered means into the orthonormal basis 8. Calculate the within class scatter matrix The within class scatter matrix measures theamountofscatterbetween items within the same class. For the ith class a scatter matrix (Si ) is calculated as the sum of the covariance matrices of the projected centered images for that class. 9. Calculate the between class scatter matrix The between class scatter matrix (SB ) measures the amount of scatter between classes. It is calculated as the sum of the covariance matrices of the projected centered means of the classes, weighted by the number of images in each class. 10. Solve the generalized eigenvalue problem 11. Keep the first C-l eigenvectors Sorttheeigenvectorsby their associated eigenvalues from high to low and keep the first C -1 eigenvectors. These are the Fisher basis vectors. 12. Project images onto eigenvectors: Project all the rotated original (i.e. not centered) images onto the Fisher basis vectors. First project the original images into the orthonormal basis, and then project these projected images onto the Fisher basis vectors. The original rotated images are projected onto this line because these are the points that the line has been created to discriminate, not the centered images. 3. CONCLUSIONS LDA attempt to maximize the between class scatter, while minimizing the within class scatter. In other words, moves images of the same class closer together, while moving images of different classes furtherapart. Lightingconditions, Image quality, Pose orientation plays an important role in face recognition system REFERENCES [1] John D. Woodward, Jr., Christopher Horn, Julius Gatune and Aryn Thomas, Biometrics A Look at Facial Recognition, Prepared for the Virginia State Crime Commission, Published by RAND,(2003). [2]Gian Luca Marcialis and Fabio Roli, “Decision - level fusion of PCA and LDA-based face recognition algorithms,” International Journal of Image and Graphics, Vol. 6, No.2, pp 293-311, (2006). [3]Juwei Lu, Kostantinos N. Plataniotis, and Anastasios N. Venetsanopoulos, “Face Recognition Using LDA-Based Algorithms,” IEEE Transactions on Neural Networks, Vol. 14, No.1, January 2003. [4] A tutorial on Principal Component Analysis by Lindsay I Smith February 26,2002