https://github.com/uiur/neo-meguro-line
super privacy tool powered by machine learning technology
https://github.com/uiur/neo-meguro-line
Last synced: 4 months ago
JSON representation
super privacy tool powered by machine learning technology
- Host: GitHub
- URL: https://github.com/uiur/neo-meguro-line
- Owner: uiur
- Created: 2016-11-19T08:30:47.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-25T15:41:43.000Z (over 8 years ago)
- Last Synced: 2025-02-01T17:04:26.010Z (4 months ago)
- Language: Python
- Homepage:
- Size: 625 KB
- Stars: 15
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mesen
https://mesen-dot-uiu-server.appspot-preview.com/
mesen uses Google Cloud Vision API to detect face landmarks.
```sh
export GOOGLE_APPLICATION_CREDENTIALS=credentials.json
python main.py
``````sh
curl -sL -X POST localhost:8080 -F 'image=@data/uesaka.jpg' | imgcat
```or use as cli:
```sh
python convert.py data/pastak.jpg > result.png
```## Run app on docker
It uses docker to deploy to google app engine.You can launch the docker environment by following commands:
```sh
docker build -t mesen .
docker run -p 8080:8080 mesen
```and open `http:://$(docker-machine ip):8080`
## Deploy
It's running on a container with flexible enviroment in google app engine```sh
gcloud app deploy
```