Difference between revisions of "Face Recognition"

From Robert-Depot
Jump to: navigation, search
Line 26: Line 26:
 
=STASM=
 
=STASM=
 
*http://www.milbo.users.sonic.net/stasm/
 
*http://www.milbo.users.sonic.net/stasm/
 +
**paper [http://jivp.eurasipjournals.com/content/2013/1/13/abstract]
 
=stackoverflow=
 
=stackoverflow=
 
*http://stackoverflow.com/questions/17513421/facial-expression-recognition-from-webcam
 
*http://stackoverflow.com/questions/17513421/facial-expression-recognition-from-webcam
Line 32: Line 33:
 
=Advanced Identity Representation (AIR) Toolkit=
 
=Advanced Identity Representation (AIR) Toolkit=
 
*http://groups.csail.mit.edu/icelab/content/air-toolkit-development
 
*http://groups.csail.mit.edu/icelab/content/air-toolkit-development
 +
=CMU Human Sensing Lab=
 +
*http://humansensing.cs.cmu.edu/projects/autofacial.html

Revision as of 12:44, 6 February 2014

<<< back to Wiki Home

opencv

open cv face recognition tutorial- http://docs.opencv.org/modules/contrib/doc/facerec/facerec_tutorial.html

openbr

Face Detection

  • faces (with pupils) in a folder of images:
br -algorithm ShowFaceDetection -enrollAll -enroll /Volumes/Cistern/Life/NewYears\'sEve/*.JPG face_metadata.csv
  • gender detection:
br -algorithm GenderClassification -enrollAll -enroll /Volumes/Cistern/Life/NewYears\'sEve/*.JPG gender_metadata.csv
  • age regression:
br -algorithm AgeRegression -enrollAll -enroll /Volumes/Cistern/Life/NewYears\'sEve/*.JPG age_metadata.csv

Expression Recognition

STASM

stackoverflow

Intel Perceptual Computing

Advanced Identity Representation (AIR) Toolkit

CMU Human Sensing Lab