An open API service indexing awesome lists of open source software.

https://github.com/justinshenk/deepemotion

Flask app for emotion detection in video
https://github.com/justinshenk/deepemotion

deep-learning emotion-detection facial-expression-recognition video

Last synced: 9 months ago
JSON representation

Flask app for emotion detection in video

Awesome Lists containing this project

README

          

# DeepEmotion

DeepEmotion is a web app for detecting emotions in video frames. It runs on Flask + Nginx + [Peltarion](https://peltarion.com/) API and uses [FER](https://github.com/justinshenk/fer) for video facial recognition.

![video-demo example](video-demo_mid.gif)

## Installation

Instructions for installing Nginx and Gunicorn for Flask are available on [Digital Ocean](https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-gunicorn-and-nginx-on-ubuntu-18-04).

Install with `python setup.py install`, which creates a `config.cfg` file in the root directory. To connect with Peltarion API, add your key to `config.cfg`:

```
EMOTION_API_URL='ENTER_MY_URL'
EMOTION_API_TOKEN='ENTER_MY_TOKEN'
```