19 lines
437 B
YAML
19 lines
437 B
YAML
camera:
|
|
rtsp_url: "rtsp://username:password@ip:port/stream"
|
|
fps: 30
|
|
width: 1280
|
|
height: 720
|
|
|
|
model:
|
|
person_detection:
|
|
model_name: "yolov8n.pt" # 使用YOLOv8进行人物检测
|
|
confidence_threshold: 0.5
|
|
|
|
distance_estimation:
|
|
focal_length: 1000 # 摄像头焦距
|
|
sensor_height: 5.6 # 摄像头传感器高度(mm)
|
|
average_person_height: 1700 # 平均人身高(mm)
|
|
|
|
api:
|
|
host: "0.0.0.0"
|
|
port: 8000 |