13 lines
534 B
YAML
13 lines
534 B
YAML
RTSP_URL : "rtsp://10.0.0.17:8554/camera_test/2" # 替换为实际RTSP地址
|
|
MODEL_PATH : "yolov8n.pt" # YOLO模型路径
|
|
DETECTION_INTERVAL : 5 # 每5帧检测一次
|
|
OUTPUT_STREAM_URL : "rtmp://localhost:1935/live/processed" # 输出流地址
|
|
TARGET_CLASSES: ["person", "car", "truck"]
|
|
|
|
|
|
alarm_save_path: "./alarm_videos"
|
|
confidence_threshold: 0.6
|
|
alarm_duration: 15 # 告警录制15秒
|
|
cooldown_duration: 600 # 冷却600秒
|
|
output_stream_url: "rtmp://localhost:1935/live/stream"
|
|
output_url: "rtmp://127.0.0.1:1935/live/stream" |