commit eb7c3e4c7a70775a997fc3a385c2c65f90acb679 Author: Dustin Thomas Date: Fri Jan 31 15:50:09 2025 -0600 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1a9aabe --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.venv +.idea \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..2125f30 --- /dev/null +++ b/README.md @@ -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 +``` \ No newline at end of file diff --git a/client.py b/client.py new file mode 100644 index 0000000..e69de29 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..242e8cc --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +opencv +numpy \ No newline at end of file diff --git a/server.py b/server.py new file mode 100644 index 0000000..e69de29