face-alignment-at-3000fps
face-alignment-at-3000fps copied to clipboard
fps of testing
hi, do you know how fast it is when testing on one image? have you analyse its fps? Thanks!
I have written in README.md
- The paper claims for 3000fps for very high frame rates for different parameters, while my implementation can achieve several hundreds frame rates. What you should be AWARE of is that we both just CALCULATE the time that predicting the landmarks, EXCLUDES the time that detecting faces.
- If you want to use it for realtime videos, using OpenCV's face detector will achieve about 15fps, since 80% (even more time is used to get the bounding boxes of the faces in an image), so the bottleneck is the speed of face detection, not the speed of landmarks predicting. You are required to find a fast face detector(For example, libfacedetection)
the frame rate varies according to the model complexity.