FaceRecognitionLib
Face Recognition Library

Developed by Kristian Lauszus, 2016

The code is released under the GNU General Public License.


This library can be used in order to calculate Eigenfaces and Fisherfaces in C++

This Eigenfaces are calculated efficiently as described in the paper by M. Turk and A. Pentland.

The Eigenfaces.m Matlab script was used for development and was then ported to C++.

If you want to convert the PGM image run the convert_pgm.sh script.

Documentation

Some information can be found in the Eigenfaces_Report.pdf.

The source is documentated using Doxygen. The documentation can be found at the following link: http://lauszus.github.io/FaceRecognitionLib.

AT&T Facedatabase

When using the code with the AT&T Facedatabase the output looks like this:

Eigenfaces:

Fisherfaces:

Notice how the Eigenfaces is only slightly worse compared to Fisherfaces.

Yale Face Database

However when using the Yale Face Database the difference is significant:

Eigenfaces:

Fisherfaces:

This clearly shows the weakness of Eigenfaces, as it only maximizes the scatter between classes and thus end up matching all images with light coming from the left side.

Note you need to prepare the Yale Face Database by running the convert_yalefaces.sh script first.

Android application

This library was used for an Android application. Some screenshots can be seen below:

Build instructions

In order to build the C++ code and run the script you need to install Eigen3 and ImageMagick:

Mac:

1 brew install eigen imagemagick

Ubuntu:

1 sudo apt-get install libeigen3-dev imagemagick

The RedSVD library is included as a submodule.

For more information send me an email at lausz.nosp@m.us@g.nosp@m.mail..nosp@m.com.