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

https://github.com/kasanaa/retrospectra

RetroSpectra is a real-time facial emotion detection application. It uses Convolutional Neural Network (CNN) to identify human emotions from live video feed. The application leverages a pre-trained model to accurately detect and classify emotions, providing an interactive and engaging user experience.
https://github.com/kasanaa/retrospectra

cnn cnn-keras convolutional-neural-networks digital-image-processing github-copilot learn llm machine-learning neural-networks python

Last synced: 3 months ago
JSON representation

RetroSpectra is a real-time facial emotion detection application. It uses Convolutional Neural Network (CNN) to identify human emotions from live video feed. The application leverages a pre-trained model to accurately detect and classify emotions, providing an interactive and engaging user experience.

Awesome Lists containing this project

README

        

## All the data/images that are used to train this model lies in this zip.

### [imageDataSet.rar](https://github.com/KaSaNaa/RetroSpectra/blob/main/imagesDataSet.rar)

# How to run

Follow these steps to set up and run the project:

1. Navigate to your project directory in the terminal.
2. Create a virtual environment:

```bash
python -m venv venv
```

3. Activate the virtual environment:

- On Windows

```bash
.\venv\Scripts\activate
```

- On Unix or MacOS

```bash
source venv/bin/activate
```

4. Install the required packages:

```bash
pip install -r requirements.txt
```

5. When you're done working in the virtual environment for the moment, you can deactivate it:

```bash
deactivate
```

6. Run the app:

```python
python app.py
```