Face recognition demo
Loading...
14,846
Loading...
Uploader Comments (yxccumt)
see all
All Comments (13)
-
thanks a lot
-
my email is roshi4t@hotmail.com
-
Good job guys, and i would like to know what software did you use for make graphic interface ?
congratulations
could you send me a demo of your system?
-
Good job guys, and i would like to know what software did you use for make graphic interface ?
-
do you have any paper work on this face recognition ?
Loading...
Could you share the code?
DarkAcMe 1 year ago 2
@DarkAcMe I don't have the code now. Here is how it works:
1. Haar face detection
2. Meanshift/camshift blob tracking
3. PCA or Fisher LDA projection
4. KNN classification
Of course you have to train the projection matrix before hand.
yxccumt 1 year ago
@DarkAcMe I don't have the code now. Here is how it works:
1. Haar face detection
2. Meanshift/camshift blob tracking
3. PCA or Fisher LDA projection
4. KNN classification
Of course you have to train the projection matrix before hand.
yxccumt 1 year ago
@yxccumt Did you use OpenCV?
DarkAcMe 1 year ago
@DarkAcMe Yes, all image video processing are based on OpenCV
yxccumt 1 year ago
How do make it that fast? Mine is only 5-6 fps. Do you need special tuning? Do you use Haar/Opencv?
peerajak 1 year ago
@peerajak Yes, it's all based on OpenCV. Haar is only used for initialization, you could use meanshift or other blob tracking algorithms in the following frames. Also there are several setting parameters in the haar detection function you could speed up
yxccumt 1 year ago