Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wieczorek1990/instavision
InstaVision detects faces using Google Vision API.
https://github.com/wieczorek1990/instavision
Last synced: 5 days ago
JSON representation
InstaVision detects faces using Google Vision API.
- Host: GitHub
- URL: https://github.com/wieczorek1990/instavision
- Owner: wieczorek1990
- Created: 2018-03-21T08:46:45.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-21T17:59:59.000Z (almost 7 years ago)
- Last Synced: 2024-11-24T15:16:31.626Z (2 months ago)
- Language: Python
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# InstaVision
## About
InstaVision detects faces using Google Vision API.
Look for yellow rectangles, yay!
## Technical
This application was built with localhost usage in mind,
meaning that links in the HTML files point to localhost,
SQLite is used.Google application credentials are needed during image
upload, please provide them under project root
`/instavision.json`.Backend port is 8000. Frontend port is 80.
```bash
# backend
pip3 install -r requirements.txt &&\
python3 manage.py migrate &&\
python3 manage.py runserver 8000
# frontend
cd dist/ && sudo python3 -m http.server 80
# open http://localhost
```