Spaces:
Runtime error
Runtime error
Commit
·
c7606ae
1
Parent(s):
36f230c
Update tracker.py
Browse files- lib/fish_eye/tracker.py +1 -0
lib/fish_eye/tracker.py
CHANGED
@@ -19,6 +19,7 @@ class Tracker:
|
|
19 |
# Boxes should be given in normalized [x1,y1,x2,y2,c]
|
20 |
def update(self, dets=np.empty((0, 5))):
|
21 |
new_frame_entries = []
|
|
|
22 |
for track in self.algorithm.update(dets):
|
23 |
|
24 |
# Match confidence with correct track
|
|
|
19 |
# Boxes should be given in normalized [x1,y1,x2,y2,c]
|
20 |
def update(self, dets=np.empty((0, 5))):
|
21 |
new_frame_entries = []
|
22 |
+
print(len(dets))
|
23 |
for track in self.algorithm.update(dets):
|
24 |
|
25 |
# Match confidence with correct track
|