├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── ReadmeAssets ├── Fullstop.jpg ├── J.jpg ├── Space.jpg ├── The-26-letters-and-10-digits-of-American-Sign-Language-ASL.png └── Z.jpg ├── collectImgs.py ├── createDataset.py ├── main.py ├── model.p ├── requirements.txt └── trainClassifier.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmayJivnani/Sign-Language-to-Text-and-Speech/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmayJivnani/Sign-Language-to-Text-and-Speech/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmayJivnani/Sign-Language-to-Text-and-Speech/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmayJivnani/Sign-Language-to-Text-and-Speech/HEAD/README.md -------------------------------------------------------------------------------- /ReadmeAssets/Fullstop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmayJivnani/Sign-Language-to-Text-and-Speech/HEAD/ReadmeAssets/Fullstop.jpg -------------------------------------------------------------------------------- /ReadmeAssets/J.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmayJivnani/Sign-Language-to-Text-and-Speech/HEAD/ReadmeAssets/J.jpg -------------------------------------------------------------------------------- /ReadmeAssets/Space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmayJivnani/Sign-Language-to-Text-and-Speech/HEAD/ReadmeAssets/Space.jpg -------------------------------------------------------------------------------- /ReadmeAssets/The-26-letters-and-10-digits-of-American-Sign-Language-ASL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmayJivnani/Sign-Language-to-Text-and-Speech/HEAD/ReadmeAssets/The-26-letters-and-10-digits-of-American-Sign-Language-ASL.png -------------------------------------------------------------------------------- /ReadmeAssets/Z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmayJivnani/Sign-Language-to-Text-and-Speech/HEAD/ReadmeAssets/Z.jpg -------------------------------------------------------------------------------- /collectImgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmayJivnani/Sign-Language-to-Text-and-Speech/HEAD/collectImgs.py -------------------------------------------------------------------------------- /createDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmayJivnani/Sign-Language-to-Text-and-Speech/HEAD/createDataset.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmayJivnani/Sign-Language-to-Text-and-Speech/HEAD/main.py -------------------------------------------------------------------------------- /model.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmayJivnani/Sign-Language-to-Text-and-Speech/HEAD/model.p -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmayJivnani/Sign-Language-to-Text-and-Speech/HEAD/requirements.txt -------------------------------------------------------------------------------- /trainClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmayJivnani/Sign-Language-to-Text-and-Speech/HEAD/trainClassifier.py --------------------------------------------------------------------------------