Metaface is a face detection web application using the Clarifai Face Detect AI Model. Paste the image link and submit to view the output.
Works best with images in landscape photos. Portrait photos work, but the styling may break at times.
Can detect multiple faces as well.
Uses JWT to manage sessions.
Currently there's an issue with Live Demo, to test the app, follow the Usage instructions
.
├── docker-compose.yaml
├── README.md
├── images # All Screenshots
│ └── ...
│
├── server # Express App
│ ├── Dockerfile
│ ...
│
├── postgres # Database
│ ├── deploy_schemas.sql # Creates tables with seed data during docker build
│ └── Dockerfile
│
└── client # React App
├── ...
└── Dockerfile
git clone https://github.com/gsbakshi/metaface.git
cd metaface
This Command will copy a full project to your local environment and then enter the metaface directory.
docker compose up
This command will build all the components to get your server, database, caching and frontend started.
This assumes that you already have docker & docker compose installed on your system. If you don't, go to Docker's Website and follow the instructions there to install it on your system.