Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/louiejancevski/facialemotiondetector
😜 A web app that detects your face emotions using AI and matches them with emojis. Built using ReactJS and Face-API.js: a JavaScript API for face detection and face recognition in the browser implemented on top of the tensorflow.js core API.
https://github.com/louiejancevski/facialemotiondetector
ai emoji face face-api face-emotions facial-expression-recognition reactjs tensorflow
Last synced: about 1 month ago
JSON representation
😜 A web app that detects your face emotions using AI and matches them with emojis. Built using ReactJS and Face-API.js: a JavaScript API for face detection and face recognition in the browser implemented on top of the tensorflow.js core API.
- Host: GitHub
- URL: https://github.com/louiejancevski/facialemotiondetector
- Owner: louiejancevski
- Created: 2020-08-10T06:43:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-29T18:38:28.000Z (over 4 years ago)
- Last Synced: 2024-08-10T19:45:39.896Z (4 months ago)
- Topics: ai, emoji, face, face-api, face-emotions, facial-expression-recognition, reactjs, tensorflow
- Language: JavaScript
- Homepage: https://louiejancevski.github.io/FacialEmotionDetector
- Size: 5.86 MB
- Stars: 24
- Watchers: 1
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Facial Emotion Detector
- Web app that detects your face emotions using AI and matches them with emojis.
- Built using ReactJS and face-API.js
- Face-API.js is a JavaScript API for face detection and face recognition in the browser implemented on top of the tensorflow.js core API.
- Version 2.0## URL / Live demo
- [louiejancevski.github.io/FacialEmotionDetector](https://louiejancevski.github.io/FacialEmotionDetector/)## About this project
The main objective was very simple, to display emojis based on the facial expressions that we make in front of our camera.Once the app detects your face, it will do two things:
- Change the background color.
- Replace the default emoji with the one that it thinks is the best match to your expression.Face-API.js was used to faciliate this process. You can read more about it [here](https://justadudewhohacks.github.io/face-api.js/docs/).
**Note**: You are not being recorded at any point, it all happens in your own browser!
## Taking a look inside
I'm going to take Dwayne Johnson, The Rock, as an example to showcase the site.Very straightforward.
Whenever he smiles, the emoji turns into a lauging emoji, and the background color changes to green.
![App demo image](https://github.com/louiejancevski/FacialEmotionDetector/blob/master/public/demo.png)
On the other side,
If he looks angry, the app will also catch that and display the right emoji and background color.
![App demo image](https://github.com/louiejancevski/FacialEmotionDetector/blob/master/public/demo1.png)
Same thing happens whenever his facial expression might look a bit neutral.
The emoji gets changed, and the background color gets updated as well.
![App demo image](https://github.com/louiejancevski/FacialEmotionDetector/blob/master/public/demo2.png)
## Detectable expressions
- Default: 😐
- Neutral: 😐
- Happy: 😀
- Sad: 😥
- Angry: 😠
- Fearful: 😨
- Disgusted: 🤢
- Surprised: 😲## Browsers support
| [](http://godban.github.io/browsers-support-badges/)
Firefox | [](http://godban.github.io/browsers-support-badges/)
Chrome | [](http://godban.github.io/browsers-support-badges/)
Safari |
| --------- | --------- | --------- |
| last version| last version| last version## Other notes
For this app to properly work, make sure that:
- Your room has good lighting
- Your face is close enough to the computer
- And that you give it a few seconds after your camera is loaded, so that it can accurately detect your face## Available Scripts
In the project directory, you can run:
### `npm start`
Runs the app in the development mode.
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.The page will reload if you make edits.
You will also see any lint errors in the console.### `npm test`
Launches the test runner in the interactive watch mode.
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.### `npm run build`
Builds the app for production to the `build` folder.
It correctly bundles React in production mode and optimizes the build for the best performance.The build is minified and the filenames include the hashes.
Your app is ready to be deployed!See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
## Learn More
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
To learn React, check out the [React documentation](https://reactjs.org/).