-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ofxDLib, ofxLearn, ofxFaceTracker #3
Comments
Hey @genekogan Thanks! Sure, we must unite forces. It would be a good thing to get ofxLearn and this to work together. |
@genekogan about the link you posted to dlib face tracker. |
@genekogan I found this https://github.com/TadasBaltrusaitis/CLM-framework which sits on top of dlib to be significantly better then ofxFaceTracker.... haven't tested dlib directly but CLM is great. (also in my experience CLAHE helps alot with face trackers http://imagej.net/Enhance_Local_Contrast_(CLAHE)) |
@ofZach i think @kylemcdonald has been playing with dlib for facetracking recently (https://twitter.com/kcimc/status/719563059673579520), not sure if he has tried CLM. it does look quite promising |
something to consider is that from my experience dlib gets pretty slow when processing images/video at higher resolutions 960x720 is almost too big already. |
yes I had to scale down the image I was passing into to CLM, I think it fine at 640x480 so it was something in that size range. Faces couldn't be smaller than about 70 pixels but that worked for my purposes. I think that might have to do with HoG vs haar for locating the face. |
dlib version 19.2 is out with neural net face detection + etc. |
i was testing dlib on my mbp and on an nvidia gtx780 with gpu acceleration and i was getting 3-5fps for images in the 800x800 to 1600x1600 range. and the results are perfect in terms of accuracy. i'm testing with modified example script that just outputs json for a list of images fed in via the command line: https://gist.github.com/kylemcdonald/b88f99d1d97f016a686c11bd378f3b5c |
this looks awesome roy 👍 :)
i've been meaning to update ofxLearn to the newest dlib. you and i might be duplicating work -- is there any reason you didn't build this on top of ofxLearn (since it already has a bunch of other dlib wrappers).
also to my eyes the facetracker is not as robust as ofxFaceTracker. see
also have you seen this.
does real-time facetracking with dlib which appears super robust, looks like there is an example included, have you seen that?
The text was updated successfully, but these errors were encountered: