├── .github └── workflows │ └── django.yml ├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── pythonProject.iml └── vcs.xml ├── SignLanguageDetection.py ├── SignLanguageDetection_Dont-use.py ├── demo.mp4 ├── images ├── a.png ├── b.png ├── c.png ├── d.png ├── download.png ├── e.png ├── f.png ├── g.png ├── h.png ├── i.png ├── j.png ├── k.png ├── l.png ├── m.png ├── n.png ├── o.png ├── p.png ├── q.png ├── r.png ├── s.png ├── space.png ├── t.png ├── u.png ├── v.png ├── w.png ├── x.png ├── y.png └── z.png ├── output1.mp4 ├── packages.txt ├── procfile ├── readme.md ├── requirements.txt ├── temp.py └── voice to sign.py /.github/workflows/django.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/.github/workflows/django.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/pythonProject.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/.idea/pythonProject.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /SignLanguageDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/SignLanguageDetection.py -------------------------------------------------------------------------------- /SignLanguageDetection_Dont-use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/SignLanguageDetection_Dont-use.py -------------------------------------------------------------------------------- /demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/demo.mp4 -------------------------------------------------------------------------------- /images/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/a.png -------------------------------------------------------------------------------- /images/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/b.png -------------------------------------------------------------------------------- /images/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/c.png -------------------------------------------------------------------------------- /images/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/d.png -------------------------------------------------------------------------------- /images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/download.png -------------------------------------------------------------------------------- /images/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/e.png -------------------------------------------------------------------------------- /images/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/f.png -------------------------------------------------------------------------------- /images/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/g.png -------------------------------------------------------------------------------- /images/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/h.png -------------------------------------------------------------------------------- /images/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/i.png -------------------------------------------------------------------------------- /images/j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/j.png -------------------------------------------------------------------------------- /images/k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/k.png -------------------------------------------------------------------------------- /images/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/l.png -------------------------------------------------------------------------------- /images/m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/m.png -------------------------------------------------------------------------------- /images/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/n.png -------------------------------------------------------------------------------- /images/o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/o.png -------------------------------------------------------------------------------- /images/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/p.png -------------------------------------------------------------------------------- /images/q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/q.png -------------------------------------------------------------------------------- /images/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/r.png -------------------------------------------------------------------------------- /images/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/s.png -------------------------------------------------------------------------------- /images/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/space.png -------------------------------------------------------------------------------- /images/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/t.png -------------------------------------------------------------------------------- /images/u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/u.png -------------------------------------------------------------------------------- /images/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/v.png -------------------------------------------------------------------------------- /images/w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/w.png -------------------------------------------------------------------------------- /images/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/x.png -------------------------------------------------------------------------------- /images/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/y.png -------------------------------------------------------------------------------- /images/z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/images/z.png -------------------------------------------------------------------------------- /output1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/output1.mp4 -------------------------------------------------------------------------------- /packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/packages.txt -------------------------------------------------------------------------------- /procfile: -------------------------------------------------------------------------------- 1 | web: streamlit run signlanguagedetection.py 2 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/requirements.txt -------------------------------------------------------------------------------- /temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/temp.py -------------------------------------------------------------------------------- /voice to sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edlabadkarsameer/Sign-Language-detection-Web-Application-/HEAD/voice to sign.py --------------------------------------------------------------------------------