https://github.com/sachinkalsi/face-detection-api
Face detection API using Python Flask framework
https://github.com/sachinkalsi/face-detection-api
face-api face-detection face-detection-system face-recognition
Last synced: 5 months ago
JSON representation
Face detection API using Python Flask framework
- Host: GitHub
- URL: https://github.com/sachinkalsi/face-detection-api
- Owner: SachinKalsi
- License: mit
- Created: 2018-12-23T17:22:58.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T01:29:51.000Z (over 3 years ago)
- Last Synced: 2023-05-25T05:24:31.315Z (almost 3 years ago)
- Topics: face-api, face-detection, face-detection-system, face-recognition
- Language: Python
- Homepage:
- Size: 151 MB
- Stars: 10
- Watchers: 2
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# face-detection-api
A simple web application built using [Flask](https://github.com/pallets/flask). It exposes various REST APIs which are built on top of [face-recognition](https://github.com/ageitgey/face_recognition).
# How to execute?
1. `pip install -r requirements.txt`
2. `python3 run.py`
3. visit http://localhost:5000/
If not specified the port explicitly, the server starts running on port 5000 by default
# Use Docker container
Docker image repo: https://hub.docker.com/r/sachinkalsi/face-detection-api
Run the following commands
```
docker pull sachinkalsi/face-detection-api
docker run -p 5000:5000 sachinkalsi/face-detection-api
```
visit http://localhost:5000/
