Skip to content

Commit

Permalink
fix yolov5 timing
Browse files Browse the repository at this point in the history
  • Loading branch information
mikel.brostrom committed Jan 3, 2022
1 parent 3f5c751 commit 99e5ac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion track.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def detect(opt):
f.write(('%g ' * 10 + '\n') % (frame_idx + 1, id, bbox_left, # MOT format
bbox_top, bbox_w, bbox_h, -1, -1, -1, -1))

LOGGER.info(f'{s}Done. YOLO:({dt[1]:.3f}s), DeepSort:({t5 - t4:.3f}s)')
LOGGER.info(f'{s}Done. YOLO:({t3 - t2:.3f}s), DeepSort:({t5 - t4:.3f}s)')

else:
deepsort.increment_ages()
Expand Down

0 comments on commit 99e5ac1

Please sign in to comment.