Face Recognition:Application of Image Processing
Face Recognition:Application of Image Processing
IMAGE PROCESSING
INTRODUCTION
There are many techniques for face detection and recognition. It
can be done using PCA(Principal Component Analysis) or KLT.
Also recognition can be done in the spatial domain or in temporal
domain. Here in this paper , face recognition technique by
eigenface method is presented.
The method is done in the temporal domain using discrete wavelet
transform (dwt) so that we can get information about the time as
well as frequency of any part of the signal simultaneously. Also by
using Daubechies wavelet, first the image is reduced to a smaller
size so that the redundant information in the image and the noise is
eliminated. After these two pre-processing stages are over the main
algorithm is applied over the sample images and the test image for
face-recognition.
METHOD DESCRIPTION
1. Read the M test images.
Here M=7.
A(t).
8. Get the M eigenvectors(v(i)) and corresponding
eigenvalues of the matrix A(t)A.
i=1,2,...M.
NOTE- 1.Here we could have calculated
eigenvectors of AA(t) but then number of such
vectors would have been high resulting in high
dimensionality which is a problem.
So again we would have had to reduce the
number to M.
So we A(t)A is computed and its eigenvectors
are taken so that we can get the best M
eigenvectors . Thus both time and dimensionality
is reduced.
2.We can easily get the M eigenvectors of AA(t)
by using u(i)=A*v(i).
9. Take each mean-subtracted face(S) , compute u(i)
(t)*S*u(i) add them together . Thus we represent each
face as a combination of eigenfaces.Let each such
face be F(i) (i=1,2,.....M).
[u(i)(t)=transpose of u(i)].
This method has many advantages1. Dimensionality is reduced keeping par with
information.
2.It is done in temporal domain so method is not very
elaborate or time-consuming as compared to creating
a feature vector and comparing features(in spatial
domain).
3. It also works if the test image is not among the
images in database because in that case the distance
between the test image and all the sample images will
be more than the threshold.
CONCLUSION
There are certain limitations to this method such as
the face image should be frontal to get better results.
A noisy image causes recognition performance to be
degraded. But considering time and dimensionality
this method is of good use for face recognition and