Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 1.18 KB

README.md

File metadata and controls

15 lines (8 loc) · 1.18 KB

Emotion Detector

Usage : python emotionDetector.py

This python script apply face detection to a live stream from camera and then each face is assigned a label based on emotion classifier.

The emotion classifier was trained to detect the following emotions: ['Angry' , 'Disgust' ,'Fear', 'Happy','Neutral', 'Sad','Surprise']

Face Detection is done by Caffe Resnet-SSD and Face classification by CNN Keras. The face classification NN is trained on Facial Expression Recognition dataset Challenge from Kaggle. Thanks a lot to Adrian Rosebrock for his great inspiring article on Face Detection

The output will be automatically saved to folder Results as 2 videos, out1.avi which include the frames along with a bar graph for different emotions probabilities, the other file is out2.avi that saves only the frame. The code can handle multi faces however in this case the bar graph in out1.avi will not be relevant.