https://github.com/pje/recog
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pje/recog
- Owner: pje
- Created: 2020-02-21T16:02:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-21T23:03:31.000Z (over 2 years ago)
- Last Synced: 2024-10-29T09:04:28.512Z (8 months ago)
- Language: Python
- Size: 11.9 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# recog
pix2pix, tensorflow, and a webcam. Complete hack.
```
pip3 install -r requirements.txt
``````
# because we use the browser's webcam, we must serve over SSL locally.
# generate self-signed cert/key like this:
openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem# ...then run a local server (e.g.):
http-server browser/ --ssl --cert cert.pem# ...then go to https://0.0.0.0:8080/index.html
```