You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The detected bbox of pedestrain is not that accurate because the yolo detector is not trained for pedestrain dataset. That lead to the bbox often smaller than it should be. So I multiply bbox's width or height by 1.2 to make the bbox large enough to bound the whole person, which is also helpful to feature extractor in deep sort.
@ZQPei Hi, I wonder if this is your own idea? I did not see it in original paper or deep_sort tensorflow repo. BTW, do you think it will causes w to be wider than the image width? In my project, I met a problem that sometimes the bbox coordinate is minus. Thanks.
Line 40 in demo_yolo3_deepsort.py: bbox_xywh[:,3] *= 1.2. Can I ask why multiply 1.2 for height of yolo detection result?
The text was updated successfully, but these errors were encountered: