mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-05-24 06:07:03 +08:00

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com> Co-authored-by: ayush chaurasia <ayush.chaurarsia@gmail.com>
20 lines
319 B
Markdown
20 lines
319 B
Markdown
# 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"_
|