├── .gitattributes ├── .gitignore ├── .idea ├── Emotion_recognition_system.iml ├── Face_Sentiment_analysis.iml ├── Music_player_with_Emotions_recognition.iml ├── Tic_tac_toe.iml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Face_crop.py ├── Frames.py ├── LICENSE ├── Music_ML.gif ├── README.md ├── avbin64.dll ├── haarcascade_frontalface_alt.xml ├── haarcascade_frontalface_default.xml ├── label_image.py ├── music_player_webcam.py ├── musics.py ├── retrain.py ├── retrained_graph.pb ├── retrained_labels.txt ├── test.jpg ├── test_sam.jpg └── training code.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/Emotion_recognition_system.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/.idea/Emotion_recognition_system.iml -------------------------------------------------------------------------------- /.idea/Face_Sentiment_analysis.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/.idea/Face_Sentiment_analysis.iml -------------------------------------------------------------------------------- /.idea/Music_player_with_Emotions_recognition.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/.idea/Music_player_with_Emotions_recognition.iml -------------------------------------------------------------------------------- /.idea/Tic_tac_toe.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/.idea/Tic_tac_toe.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Face_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/Face_crop.py -------------------------------------------------------------------------------- /Frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/Frames.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/LICENSE -------------------------------------------------------------------------------- /Music_ML.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/Music_ML.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/README.md -------------------------------------------------------------------------------- /avbin64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/avbin64.dll -------------------------------------------------------------------------------- /haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /label_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/label_image.py -------------------------------------------------------------------------------- /music_player_webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/music_player_webcam.py -------------------------------------------------------------------------------- /musics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/musics.py -------------------------------------------------------------------------------- /retrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/retrain.py -------------------------------------------------------------------------------- /retrained_graph.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/retrained_graph.pb -------------------------------------------------------------------------------- /retrained_labels.txt: -------------------------------------------------------------------------------- 1 | angry 2 | fear 3 | sad 4 | smile 5 | -------------------------------------------------------------------------------- /test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/test.jpg -------------------------------------------------------------------------------- /test_sam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/test_sam.jpg -------------------------------------------------------------------------------- /training code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamarthMR/Music-Recommendation-System-based-on-Facial-Emotions-Recognition/HEAD/training code.txt --------------------------------------------------------------------------------