An open API service indexing awesome lists of open source software.

https://github.com/fedoxyz/realtimecv

Real Time Object Detection with YoloV8 flask server using WebSockets and VueJS as client in Docker containers
https://github.com/fedoxyz/realtimecv

docker flask-socketio vuejs yolov8n

Last synced: about 2 months ago
JSON representation

Real Time Object Detection with YoloV8 flask server using WebSockets and VueJS as client in Docker containers

Awesome Lists containing this project

README

          

# Install
Clone repository and change directory
```
git clone https://github.com/fedoxyz/RealTimeCV
cd RealTimeCV
```

Build from Dockerfiles
```
cd server && docker build -t server .
cd ../client && docker build -t client .
```

Be sure to have nvidia-container-toolkit installed on your host machine to run with GPU.

Run containers for server and client images
```
docker run --rm --gpus all -p 5000:5000 server
docker run -p 80:80 client
```