├── LICENSE ├── README.md ├── collectdata.py ├── realtimedetection.py ├── requirements.txt ├── split.py └── trainmodel.ipynb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarvivek9088/SignLanguageDetectionUsingCNN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarvivek9088/SignLanguageDetectionUsingCNN/HEAD/README.md -------------------------------------------------------------------------------- /collectdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarvivek9088/SignLanguageDetectionUsingCNN/HEAD/collectdata.py -------------------------------------------------------------------------------- /realtimedetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarvivek9088/SignLanguageDetectionUsingCNN/HEAD/realtimedetection.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow==2.10.0 2 | opencv-contrib-python==4.6.0.66 3 | split-folders 4 | -------------------------------------------------------------------------------- /split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarvivek9088/SignLanguageDetectionUsingCNN/HEAD/split.py -------------------------------------------------------------------------------- /trainmodel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarvivek9088/SignLanguageDetectionUsingCNN/HEAD/trainmodel.ipynb --------------------------------------------------------------------------------