oskarastrom commited on
Commit
5910be0
·
1 Parent(s): 695573e

Update track_detection.py

Browse files
Files changed (1) hide show
  1. scripts/track_detection.py +2 -4
scripts/track_detection.py CHANGED
@@ -34,15 +34,13 @@ def main(args, config={}, verbose=True):
34
  if "max_age" not in config: config['max_age'] = 20
35
  if "iou_threshold" not in config: config['iou_threshold'] = 0.01
36
  if "min_hits" not in config: config['min_hits'] = 11
37
- if "use_associative" not in config: config['use_associative'] = False
38
- if "boost_power" not in config: config['boost_power'] = 1
39
- if "boost_decay" not in config: config['boost_decay'] = 1
40
 
41
  print(config)
42
 
43
 
44
  locations = [
45
- "kenai-val"
46
  ]
47
  for loc in locations:
48
 
 
34
  if "max_age" not in config: config['max_age'] = 20
35
  if "iou_threshold" not in config: config['iou_threshold'] = 0.01
36
  if "min_hits" not in config: config['min_hits'] = 11
37
+ if "associativity" not in config: config['associativity'] = None
 
 
38
 
39
  print(config)
40
 
41
 
42
  locations = [
43
+ "kenai-rightbank"
44
  ]
45
  for loc in locations:
46