Skip to content
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

How much fps did you get for this? #21

Open
PiyalGeorge opened this issue Dec 7, 2018 · 1 comment
Open

How much fps did you get for this? #21

PiyalGeorge opened this issue Dec 7, 2018 · 1 comment

Comments

@PiyalGeorge
Copy link

Hi @ChenYingpeng , Thanks for your work, its Great. I'm also trying to do real-time object detection with yolov3 in jetson-tx2. So my doubt is how much FPS did you get for this model?

@myanzhang
Copy link

In detectnet.cpp, you can get:
printf("object-detection: finished processing data operation (%zu)ms\n", endDataTime - beginDataTime);---> t1 = endDataTime - beginDataTime;
printf("object-detection: finished processing yolov3 network (%zu)ms\n", endDetectTime - beginDetectTime);---> t2 = endDetectTime - beginDetectTime;
fps = 1 / (t1 + t2)
This is my way. I hope it can help you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants