tmp_set_thr.py 345 B

1234567
  1. with open("/home/admin/dsh/dual_camera_system/config/detection.py") as f:
  2. c = f.read()
  3. c = c.replace("'confidence_threshold': 0.02", "'confidence_threshold': 0.4")
  4. c = c.replace("'person_threshold': 0.02", "'person_threshold': 0.4")
  5. with open("/home/admin/dsh/dual_camera_system/config/detection.py", "w") as f:
  6. f.write(c)
  7. print("DONE")