-
Notifications
You must be signed in to change notification settings - Fork 44
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
Question : FPS rate #10
Comments
Hi. |
Thanks mbotsu ! |
@mganeko is there any way to speed up detection process ? |
Hi. Much of the cost is the structure of the machine learning model and the problem of the PAF algorithm. |
Ok. Thanks a lot! |
Hi mbotsu, I'm still working on this project, that is awesome. but some points of the code I really confused. Could you please provide a development document or some explanation like flow chart? That would be very helpful! Thanks! |
Estimator.swift's estimate method uses a Matrix structure, which is a waste of time. Especially during initialization, the matrix data will be copied internally, which can be replaced with an Array and accessed through a pointer. After the last optimization, the same picture needs 200ms before optimization, and only 50ms after optimization。 |
Hi. I haven't tried it yet, but if you want a faster implementation I recommend this code. https://github.com/opencv/open_model_zoo/tree/master/demos/human_pose_estimation_demo and CoreML Model Convert Log. |
Thank you |
@mganeko How much time it would take to process live video frames @ 60 FPS ?
The text was updated successfully, but these errors were encountered: