Spaces:
Runtime error
Runtime error
Commit
·
c18b640
1
Parent(s):
c72ec10
Update tracker.py
Browse files- lib/fish_eye/tracker.py +3 -1
lib/fish_eye/tracker.py
CHANGED
@@ -29,7 +29,9 @@ class Tracker:
|
|
29 |
# Match confidence with correct track
|
30 |
conf = 0
|
31 |
min_score = 1000000
|
32 |
-
print("algorithm", self.algorithm)
|
|
|
|
|
33 |
if type(self.algorithm) == Sort:
|
34 |
print("SORT")
|
35 |
for det in dets:
|
|
|
29 |
# Match confidence with correct track
|
30 |
conf = 0
|
31 |
min_score = 1000000
|
32 |
+
print("algorithm", self.algorithm, type(self.algorithm))
|
33 |
+
print(type(self.algorithm) == Sort)
|
34 |
+
print(type(self.algorithm) == Associate)
|
35 |
if type(self.algorithm) == Sort:
|
36 |
print("SORT")
|
37 |
for det in dets:
|