| 123456789101112131415161718192021222324252627282930 |
- """
- 联动控制配置
- """
- COORDINATOR_CONFIG = {
- 'tracking_timeout': 5.0,
- 'min_person_size': 50,
- 'max_tracking_targets': 3,
- 'detection_interval': 1.0,
- 'ptz_command_cooldown': 0.5,
- 'ptz_position_threshold': 0.03,
- }
- CALIBRATION_CONFIG = {
- 'interval': 24 * 60 * 60,
- 'quick_mode': True,
- 'auto_save': True,
- 'min_valid_points': 4,
- 'rms_error_threshold': 5.0,
- 'overlap_discovery': {
- 'pan_range': (0, 360),
- 'tilt_range': (-30, 30),
- 'pan_step': 20,
- 'tilt_step': 15,
- 'min_match_threshold': 8,
- 'stabilize_time': 2.0,
- 'max_overlap_ranges': 3,
- 'min_positions_per_range': 3,
- },
- }
|