-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml
More file actions
36 lines (31 loc) · 1.08 KB
/
config.yaml
File metadata and controls
36 lines (31 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# ─────────────────────────────────────────────────────────
# AI-Powered Video Analytics — config.yaml
# ─────────────────────────────────────────────────────────
video_input: "data/input_video.mp4"
video_output: "output/processed_video.mp4"
# ── YOLO11 detection / segmentation ──
yolo:
model_path: "yolo11n.pt"
seg_model_path: "yolo11n-seg.pt"
confidence: 0.5
iou: 0.5
classes: [0] # 0 = person (COCO)
# ── BotSORT tracker ──
tracking:
tracker: "botsort.yaml"
max_age: 30
min_hits: 3
# ── Alert system ──
alert:
enabled: true
cooldown_seconds: 10
loiter_threshold_seconds: 5.0
crowd_threshold: 5
default_zone: [100, 100, 400, 400]
# ── Streamlit UI ──
ui:
page_title: "AI-Powered Video Analytics"
default_zone: [150, 150, 1130, 570]
display_skip_frames: 3
max_upload_mb: 200
output_format: "mp4"