You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
319 B
20 lines
319 B
2 years ago
|
# YOLOv8 - OpenCV
|
||
|
|
||
|
Implementation YOLOv8 on OpenCV using ONNX Format.
|
||
|
|
||
|
Just simply clone and run
|
||
|
|
||
|
```bash
|
||
|
pip install -r requirements.txt
|
||
|
python main.py
|
||
|
```
|
||
|
|
||
|
If you start from scratch:
|
||
|
|
||
|
```bash
|
||
|
pip install ultralytics
|
||
|
yolo export model=yolov8n.pt imgsz=640 format=onnx opset=12
|
||
|
```
|
||
|
|
||
|
_\*Make sure to include "opset=12"_
|