| 12345678910111213 |
- """系统级功能开关."""
- SYSTEM_CONFIG = {
- 'enable_panorama_camera': True,
- 'enable_detection': True,
- }
- # 存储配置 (从 device.py 迁移)
- STORAGE_CONFIG = {
- 'base_dir': '/home/admin/dsh',
- 'detection_dir': '/home/admin/dsh/detection_images',
- 'paired_dir': '/home/admin/dsh/paired_images',
- }
|