https://github.com/skalskip/yolov8-live
A short script showing how to build simple real-time video analytics apps using YOLOv8 and Supervision. Try it out, and most importantly have fun! 🤪
https://github.com/skalskip/yolov8-live
real-time supervision video-analysis video-processing video-streaming webcam yolo yolov8
Last synced: about 2 months ago
JSON representation
A short script showing how to build simple real-time video analytics apps using YOLOv8 and Supervision. Try it out, and most importantly have fun! 🤪
- Host: GitHub
- URL: https://github.com/skalskip/yolov8-live
- Owner: SkalskiP
- Created: 2023-02-09T14:04:37.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-08-17T06:59:32.000Z (almost 2 years ago)
- Last Synced: 2025-04-27T06:52:21.099Z (about 2 months ago)
- Topics: real-time, supervision, video-analysis, video-processing, video-streaming, webcam, yolo, yolov8
- Language: Python
- Homepage: https://youtu.be/QV85eYOb7gk
- Size: 7.81 KB
- Stars: 82
- Watchers: 3
- Forks: 46
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
YOLOv8 LIVE
## 👋 hello
A short script showing how to build simple real-time video analytics apps using [YOLOv8](https://github.com/ultralytics/ultralytics) and [Supervision](https://github.com/roboflow/supervision). Try it out, and most importantly have fun! 🤪
## 💻 Install
```bash
# create python virtual environment
python3 -m venv venv# activate the virtual environment
source venv/bin/activate# install dependencies
pip install -r requirements.txt
```## 📸 Execute
```bash
python3 -m main
```