Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ruhyadi/drface
Face Recognition Framework
https://github.com/ruhyadi/drface
Last synced: about 10 hours ago
JSON representation
Face Recognition Framework
- Host: GitHub
- URL: https://github.com/ruhyadi/drface
- Owner: ruhyadi
- Created: 2023-01-14T15:51:04.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-25T16:24:00.000Z (almost 2 years ago)
- Last Synced: 2024-11-08T20:51:06.502Z (about 2 months ago)
- Language: Python
- Size: 107 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DRFace
A simple framework designed for face recognition purposes. This framework is built on top of FastAPI, MongoDB and OpenVINO Model Server so it's ready to use right away. This page will give you a short quickstart demonstration of the DRFace framework. For Documentation please refer to the Reference.
> Repository under heavy development.## Quickstart
We assume that you have already installed [Docker](https://docs.docker.com/get-docker/) and [Docker Compose](https://docs.docker.com/compose/install/).Build the docker images:
```bash
docker build -t ruhyadi/drface:version .
```Create a `.env` file:
```bash
cp .env.example .env
```Download the weights from release page and put it in `weights` directory.
Run docker container with docker-compose:
```bash
docker-compose up -d
```## API Documentation
The API documentation is available at [http://localhost:4540](http://localhost:4540).## Reference
- [FaceNet Pytorch](https://github.com/timesler/facenet-pytorch)
- [deepface](https://github.com/serengil/deepface)
- [insightface](https://github.com/deepinsight/insightface)