| 12345678910111213141516171819202122232425262728 |
- """
- 系统配置
- """
- # 系统配置
- SYSTEM_CONFIG = {
- 'name': '施工现场安全行为智能识别系统',
- 'version': '2.0.0',
- # === 功能开关 ===
- # 摄像头模块
- 'enable_panorama_camera': True, # 启用全景摄像头
- 'enable_ptz_camera': True, # 启用 PTZ 球机
- # 检测模块
- 'enable_detection': True, # 启用人体检测 (YOLO)
- # 联动与校准
- 'enable_calibration': True, # 启用自动校准
- 'enable_ptz_tracking': True, # 启用 PTZ 跟踪联动
- # 事件推送
- 'enable_event_push': False, # 启用事件推送
- # === 工作模式 ===
- 'tracking_mode': 'polling', # 'polling'(默认) | 'async' | 'sequential'
- # 注:async/sequential 为历史 OCR 联动模式,当前默认已移除 OCR
- }
|