-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
48 lines (48 loc) · 1.06 KB
/
Copy pathconfig.example.json
File metadata and controls
48 lines (48 loc) · 1.06 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"rtsp_url": "rtsp://user:pass@camera-ip:554/path",
"mqtt_host": "mqtt-broker-ip",
"mqtt_port": 1883,
"mqtt_base_topic": "dogwatch",
"mqtt_username": "",
"mqtt_password": "",
"mqtt_tls": false,
"model_path": "models/ssd_mobilenet_v2_coco_quant_postprocess_edgetpu.tflite",
"labels_path": "models/coco_labels.txt",
"score_threshold": 0.4,
"target_fps": 5,
"clip_dir": "clips",
"fence_zone_norm": [
[
0.0,
0.0
],
[
1.0,
0.0
],
[
1.0,
1.0
],
[
0.0,
1.0
]
],
"stationary_px": 25,
"motion_energy_thresh": 0.06,
"dig_sustain_seconds": 4.0,
"dig_stationary_px": 50,
"event_cooldown_seconds": 30,
"off_delay_seconds": 180,
"debug_capture_enabled": false,
"debug_capture_dir": "debug_captures",
"debug_capture_retention_days": 7,
"event_store_enabled": true,
"event_store_path": "data/events.db",
"motion_gate_enabled": true,
"motion_gate_threshold": 0.005,
"motion_gate_pixel_threshold": 25,
"motion_gate_max_idle_seconds": 10,
"gpu_decode": false
}