slashtechno 8cc9054e67 | ||
---|---|---|
.github/workflows | ||
.vscode | ||
faces | ||
set_detect_notify | ||
.Dockerfile.old | ||
.dockerignore | ||
.gitignore | ||
.python-version | ||
Dockerfile | ||
LICENSE | ||
README.md | ||
deepface-test.ipynb | ||
docker-compose.yml | ||
poetry.lock | ||
pyproject.toml |
README.md
Set, Detect, Notify
Recognize faces/objects in (Wyze Cam) footage and send notifications to your phone (or other devices)
Features
- Recognize objects
- Recognize faces
- Send notifications to your phone (or other devices) using ntfy
- Optionally, run headless with Docker
- Either use a webcam or an RTSP feed
- Use mrlt8/docker-wyze-bridge to get RTSP feeds from Wyze Cams
Prerequisites
Poetry/Python
- Camera, either a webcam or a Wyze Cam
- All RTSP feeds should work, however.
- Python
- Poetry
Docker
- A Wyze Cam
- Any other RTSP feed should work, as mentioned above
- Python
- Poetry
What's not required
- A Wyze subscription
Usage
Installation
- Clone this repo with
git clone https://github.com/slashtechno/wyze-face-recognition.git
cd
into the cloned repository- Then, either install with Poetry or run with Docker
Docker
- Modify to
docker-compose.yml
to achieve desired configuration - Run in the background with `docker compose up -d
Poetry
poetry install
poetry run -- set-detect-notify
Configuration
The following are some basic CLI options. Most flags have environment variable equivalents which can be helpful when using Docker.
- For face recognition, put images of faces in subdirectories
./faces
(this can be changed with--faces-directory
)- Keep in mind, on the first run, face rec
- By default, notifications are sent for all objects. This can be changed with one or more occurrences of
--detect-object
to specify which objects to detect- Currently, all classes in the COCO dataset can be detected
- To specify where notifications are sent, specify a ntfy URL with
--ntfy-url
- To configure the program when using Docker, edit
docker-compose.yml
and/or set environment variables. - For further information, use
--help
How to uninstall
- If you used Docker, run
docker-compose down --rmi all
in the cloned repository - If you used Poetry, just delete the virtual environment and then the cloned repository