ChenYingpeng / caffe-yolov3

A real-time object detection framework of Yolov3/v4 based on caffe
473 stars 231 forks source link

How much fps did you get for this? #21

Open PiyalGeorge opened 5 years ago

PiyalGeorge commented 5 years ago

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 commented 5 years ago

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.