Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avt613/rpi-face-recognition
Face recognising raspberry pi doorbell
https://github.com/avt613/rpi-face-recognition
face-recognition facerecognition raspberry-pi raspberry-pi-camera raspberrypi
Last synced: 3 months ago
JSON representation
Face recognising raspberry pi doorbell
- Host: GitHub
- URL: https://github.com/avt613/rpi-face-recognition
- Owner: avt613
- Created: 2020-07-19T15:20:11.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T03:06:30.000Z (about 2 years ago)
- Last Synced: 2024-10-11T16:41:48.555Z (3 months ago)
- Topics: face-recognition, facerecognition, raspberry-pi, raspberry-pi-camera, raspberrypi
- Language: Python
- Homepage:
- Size: 127 MB
- Stars: 7
- Watchers: 0
- Forks: 3
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This project is still in progress. If you have any questions or comments please contact me.
# RPi face recognition
Face recognizing raspberry pi doorbellThis program is seperated into multiple sections, each controling a seperate part of the system.
1) `app.py` This is the web interface script. I run this with `gunicorn app:app -b 0.0.0.0`
2) `camera.py` This is the facial recognition script.
3) `live.py` This controls the the live preview (This cannot be run at the same time as camera.py as only one script can use the camera at the same time)
4) `keypad.py` This controls the keypad (You can change the pins in `configs/matrixKeypad_RPi_GPIO.py`, line 31,32)## Note
If you are not using a latching relay then you must change the configs/relay.py file.
This program uses the 'telepot' telegram library. If you do not want to use telegram then you will need to adjust the configs/telegram.py fileTo run this code, run the `run.sh` script.
## Instalation