Spaces:
Runtime error
Runtime error
Commit
·
2d0ef6d
1
Parent(s):
7d9063f
Update inference.py
Browse files- inference.py +2 -0
inference.py
CHANGED
@@ -368,6 +368,8 @@ def do_associative_tracking(raw_detections, image_meter_width, image_meter_heigh
|
|
368 |
if len(low_boxes) + len(high_boxes) > 0:
|
369 |
tracker.update(boxes)
|
370 |
else:
|
|
|
|
|
371 |
tracker.update((np.empty((0, 5)), np.empty((0, 5))))
|
372 |
pbar.update(1)
|
373 |
|
|
|
368 |
if len(low_boxes) + len(high_boxes) > 0:
|
369 |
tracker.update(boxes)
|
370 |
else:
|
371 |
+
print(low_boxes)
|
372 |
+
print(high_boxes)
|
373 |
tracker.update((np.empty((0, 5)), np.empty((0, 5))))
|
374 |
pbar.update(1)
|
375 |
|