Difference between revisions of "Face Recognition"
From Robert-Depot
(→Face Detection) |
(→Face Detection) |
||
Line 10: | Line 10: | ||
*Shape analysis of local facial patches for 3D facial expression recognition. with weka - http://www.researchgate.net/publication/220603234_Shape_analysis_of_local_facial_patches_for_3D_facial_expression_recognition | *Shape analysis of local facial patches for 3D facial expression recognition. with weka - http://www.researchgate.net/publication/220603234_Shape_analysis_of_local_facial_patches_for_3D_facial_expression_recognition | ||
==Face Detection== | ==Face Detection== | ||
− | * | + | *faces (with pupils) in a folder of images: |
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
− | br -algorithm ShowFaceDetection -enrollAll -enroll /Volumes/Cistern/Life/NewYears\'sEve/*.JPG | + | br -algorithm ShowFaceDetection -enrollAll -enroll /Volumes/Cistern/Life/NewYears\'sEve/*.JPG face_metadata.csv |
+ | </syntaxhighlight> | ||
+ | *gender detection: | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | br -algorithm GenderClassification -enrollAll -enroll /Volumes/Cistern/Life/NewYears\'sEve/*.JPG gender_metadata.csv | ||
+ | </syntaxhighlight> | ||
+ | *age regression: | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | br -algorithm AgeRegression -enrollAll -enroll /Volumes/Cistern/Life/NewYears\'sEve/*.JPG age_metadata.csv | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=stackoverflow= | =stackoverflow= | ||
*http://stackoverflow.com/questions/17513421/facial-expression-recognition-from-webcam | *http://stackoverflow.com/questions/17513421/facial-expression-recognition-from-webcam |
Revision as of 10:44, 6 February 2014
opencv
open cv face recognition tutorial- http://docs.opencv.org/modules/contrib/doc/facerec/facerec_tutorial.html
openbr
- software openBR - http://openbiometrics.org/doxygen/latest/osx_clang.html
- examples http://openbiometrics.org/doxygen/latest/group__cli.html
- Shape analysis of local facial patches for 3D facial expression recognition. with weka - http://www.researchgate.net/publication/220603234_Shape_analysis_of_local_facial_patches_for_3D_facial_expression_recognition
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