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
Expand Up @@ -2,13 +2,24 @@
.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
7 changes: 2 additions & 5 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,9 @@ auto_landing:
enabled: true

spatial_detection:
# Path to a custom .blob model file for OAK-D.
# Set to null to auto-download the default YOLOv4-tiny (416x416, COCO 80 classes).
# To use a custom model: train with YOLO, export to ONNX, convert via blobconverter.
model_path: null
# Luxonis model zoo name. Auto-downloaded on first run, cached after.
model_name: "yolov6-nano"
confidence_threshold: 0.5
iou_threshold: 0.5
depth_lower_mm: 100 # Ignore detections closer than this (mm)
depth_upper_mm: 10000 # Ignore detections farther than this (mm)

Expand Down
Loading