Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
# IDEs
.idea/
.vscode/
*.DS_Store

# Python
__pycache__/
venv/
venv_win/

# Logging
logs/

# Pytorch and Ultralytics
*.pt
*.pth

# Model blobs (large binaries, download via scripts/download_model.py)
models/

# Cache
.cache/

# Context/prompt files
*.txt
10 changes: 10 additions & 0 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,13 @@ communications:

auto_landing:
enabled: true

spatial_detection:
# Luxonis model zoo name. Auto-downloaded on first run, cached after.
model_name: "yolov6-nano"
confidence_threshold: 0.5
depth_lower_mm: 100 # Ignore detections closer than this (mm)
depth_upper_mm: 10000 # Ignore detections farther than this (mm)

object_tracker:
target_class_id: 0 # COCO class 0 = person
Loading
Loading