Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dimianni/facedetector-app
A web app which can detect a face on the image inserted.
https://github.com/dimianni/facedetector-app
face-detection face-recognition heroku heroku-deployment node nodejs react reactjs
Last synced: 17 days ago
JSON representation
A web app which can detect a face on the image inserted.
- Host: GitHub
- URL: https://github.com/dimianni/facedetector-app
- Owner: dimianni
- Created: 2020-04-18T19:18:56.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-23T02:10:44.000Z (10 months ago)
- Last Synced: 2024-11-29T17:14:08.399Z (3 months ago)
- Topics: face-detection, face-recognition, heroku, heroku-deployment, node, nodejs, react, reactjs
- Language: JavaScript
- Homepage: https://dimianni.github.io/facedetector-app/
- Size: 885 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Face Detection App
It is a web app which can detect a face on the image inserted. There is a register/signin feature too. Quick technical facts about the project:
- Frontend part of the project is built with [Create React App](https://create-react-app.dev/).
- Backend is realized with [Node.js](https://nodejs.org/en/) and is hosted on [Heroku](https://www.heroku.com/home). GitHub repo with more details and the code can be found [here](https://github.com/dimianni/dimianniFaceDetectorApi).
- [Clarifai face recognition API](https://www.clarifai.com/models/ai-face-detection) is used to recognize faces. It is basically an artificial intelligence software trained to detect faces on pictures.## To clone the repo, run the following command:
```bash
git clone https://github.com/dimianni/facedetector-app.git
```## Usage
There are just a few commands to be aware of:
```bash
npm run start
```Will run the app in the development mode. Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
```bash
npm run test
```Will launch the test runner in the interactive watch mode.
```bash
npm run build
```
Will create a production build.## Contributing
Pull requests are welcome. Feel free to suggest any other features! Currect app components and containers can be found in the __src__ folder.