oskarastrom commited on
Commit
24f373c
·
1 Parent(s): c18b640

Update tracker.py

Browse files
Files changed (1) hide show
  1. lib/fish_eye/tracker.py +4 -0
lib/fish_eye/tracker.py CHANGED
@@ -32,6 +32,10 @@ class Tracker:
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:
 
32
  print("algorithm", self.algorithm, type(self.algorithm))
33
  print(type(self.algorithm) == Sort)
34
  print(type(self.algorithm) == Associate)
35
+ print(self.algorithm is Sort)
36
+ print(self.algorithm is Associate)
37
+ print(type(self.algorithm) is Sort)
38
+ print(type(self.algorithm) is Associate)
39
  if type(self.algorithm) == Sort:
40
  print("SORT")
41
  for det in dets: