initial commit

This commit is contained in:
Camryn Thomas 2025-01-31 15:50:09 -06:00
commit eb7c3e4c7a
Signed by: cptlobster
GPG Key ID: 33D607425C830B4C
5 changed files with 30 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.venv
.idea

26
README.md Normal file
View File

@ -0,0 +1,26 @@
# Video Streaming Proof of Concept
This project is a demo for streaming video output from multiple "client" devices to one "server". This is a basic demo
of what sauron-cv seeks to accomplish.
## Installation
```shell
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
```
## Running
### Client
```shell
python -m client
```
### Server
```shell
python -m server
```

0
client.py Normal file
View File

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
opencv
numpy

0
server.py Normal file
View File