├── Procfile ├── README.md ├── app.py ├── app1.py ├── emotion_model1.h5 ├── emotion_model1.json ├── haarcascade_frontalface_default.xml ├── requirements.txt ├── runtime.txt └── setup.sh /Procfile: -------------------------------------------------------------------------------- 1 | web: sh setup.sh && streamlit run app.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohammad-juned-khan/WebCam-Face-Emotion-Detection-Streamlit/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohammad-juned-khan/WebCam-Face-Emotion-Detection-Streamlit/HEAD/app.py -------------------------------------------------------------------------------- /app1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohammad-juned-khan/WebCam-Face-Emotion-Detection-Streamlit/HEAD/app1.py -------------------------------------------------------------------------------- /emotion_model1.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohammad-juned-khan/WebCam-Face-Emotion-Detection-Streamlit/HEAD/emotion_model1.h5 -------------------------------------------------------------------------------- /emotion_model1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohammad-juned-khan/WebCam-Face-Emotion-Detection-Streamlit/HEAD/emotion_model1.json -------------------------------------------------------------------------------- /haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohammad-juned-khan/WebCam-Face-Emotion-Detection-Streamlit/HEAD/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohammad-juned-khan/WebCam-Face-Emotion-Detection-Streamlit/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.11 2 | -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohammad-juned-khan/WebCam-Face-Emotion-Detection-Streamlit/HEAD/setup.sh --------------------------------------------------------------------------------