Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pje/recog
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pje/recog
- Owner: pje
- Created: 2020-02-21T16:02:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-11-21T23:03:31.000Z (almost 2 years ago)
- Last Synced: 2024-04-22T15:33:26.452Z (7 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
```