Spaces:
Sleeping
Sleeping
Create config/config.yaml
Browse files- config/config.yaml +22 -0
config/config.yaml
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
video:
|
| 2 |
+
target_fps: 30
|
| 3 |
+
max_resolution: 1280x720
|
| 4 |
+
|
| 5 |
+
model:
|
| 6 |
+
yolo_weights: detection/models/yolov8n.pt
|
| 7 |
+
conf_threshold: 0.25
|
| 8 |
+
iou_threshold: 0.45
|
| 9 |
+
|
| 10 |
+
trajectory:
|
| 11 |
+
polynomial_degree: 2
|
| 12 |
+
kalman:
|
| 13 |
+
process_noise: 1e-3
|
| 14 |
+
measurement_noise: 1e-1
|
| 15 |
+
|
| 16 |
+
rules:
|
| 17 |
+
umpire_call_margin_mm: 20
|
| 18 |
+
|
| 19 |
+
visual:
|
| 20 |
+
trajectory_color: red
|
| 21 |
+
stump_hit_color: yellow
|
| 22 |
+
ball_color: green
|