Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

This can be achieved by dividing the problem into two: 1. Face detection in the image 2. emotion detection For the first, you can simply use the haarcascades available with openCV download. Once you have detected the face region you can try matching the ROI versus a database of images of emotions, try to find the closest matching element and assign the same classification/label.

Detect interesting face points, like nose tip, mouth corners, eye locations, closed/open lids and determine a relation between this elements for each mood. First approach is possible by applying an abstract representation of the image (eigenFaces, fisherFaces) creating a unique representation of each mood and fitting a codebook feature vector to it. Then match vectors using a distance measure to find the best match.

Interesting links for you: http://www.scholarpedia.org/article/Fisherfaces http://docs.opencv.org/trunk/modules/contrib/doc/facerec/ http://docs.opencv.org/trunk/modules/core/doc/operations_on_arrays.html?highlight=pca#PCA

This should give a nice start !

This can be achieved by dividing the problem into two: 1. Face detection in the image image. 2. emotion detection detection. For the first, you can simply use the haarcascades available with openCV download. download.

Once you have detected the face region you can face, try matching the ROI versus a database of images of emotions, try to find the closest matching element and assign the same classification/label.

classification/label. Else Detect interesting face points, like nose tip, mouth corners, eye locations, closed/open lids and determine a relation between this elements for each mood. mood.

First approach is possible by applying an abstract representation of the image (eigenFaces, fisherFaces) creating a unique representation of each mood and fitting a codebook feature vector to it. Then match vectors using a distance measure to find the best match.

Interesting links for you: http://www.scholarpedia.org/article/Fisherfaces http://docs.opencv.org/trunk/modules/contrib/doc/facerec/ http://docs.opencv.org/trunk/modules/core/doc/operations_on_arrays.html?highlight=pca#PCA

This should give a nice start !