system.py 318 B

12345678910111213
  1. """系统级功能开关."""
  2. SYSTEM_CONFIG = {
  3. 'enable_panorama_camera': True,
  4. 'enable_detection': True,
  5. }
  6. # 存储配置 (从 device.py 迁移)
  7. STORAGE_CONFIG = {
  8. 'base_dir': '/home/admin/dsh',
  9. 'detection_dir': '/home/admin/dsh/detection_images',
  10. 'paired_dir': '/home/admin/dsh/paired_images',
  11. }