File: eigenFaces.h

package info (click to toggle)
mldemos 0.5.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 32,224 kB
  • ctags: 46,525
  • sloc: cpp: 306,887; ansic: 167,718; ml: 126; sh: 109; makefile: 2
file content (38 lines) | stat: -rw-r--r-- 1,001 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef _EIGEN_FACES_H_
#define _EIGEN_FACES_H_

#include <vector>

class EigenFaces
{
private:
	int dim;
	int trainCnt;
	IplImage **eigenVectors;
	IplImage *avgImage;
	CvMat *eigenValues;
	std::vector<float *> projections;
	std::vector<int> classes;
	std::vector<bool> isTraining;
	bool bUseColor;

	int FindNearestNeighbor(float *candidate);

public:
	EigenFaces();
	~EigenFaces();
	void Learn(std::vector<IplImage *> faces, std::vector<int> classes, std::vector<bool> isTrainingData=std::vector<bool>(), bool bColor = true);
	void Recognize(IplImage *face);
	void Draw(bool bMonochrome=false, int e1 = 0, int e2 = 1);
    IplImage *DrawEigenVals();
	std::vector<IplImage *> GetEigenVectorsImages();

	std::vector<float *> GetProjections(int dim = 0, bool bNormalized=false);
	std::vector<int> GetClasses(){return classes;};
	IplImage **GetVectors(){return eigenVectors;};
	int GetVectorCount(){return dim;};

	IplImage *mapImage;

};
#endif // _EIGEN_FACES_H_