|
|
||
|---|---|---|
| .. | ||
| README.md | ||
| requirements.txt | ||
| script.py | ||
README.md
👋 hello
This script provides functionality for processing videos using YOLOv8 for object detection and Supervision for tracking and annotation.
💻 install
pip install -r requirements.txt
⚙️ parameters
| parameter | required | description |
|---|---|---|
--source_weights_path |
✓ | Path to the source weights file for YOLOv8. |
--source_video_path |
✓ | Path to the source video file to be processed. |
--target_video_path |
✓ | Path to the target video file (output). |
--confidence_threshold |
✗ | Confidence threshold for YOLO model detection. Default is 0.3. |
--iou_threshold |
✗ | IOU (Intersection over Union) threshold for YOLO model detection. Default is 0.7. |