├── License ├── README.md ├── collect_imgs.py ├── create_dataset.py ├── data └── .gitignore ├── inference_classifier.py ├── requirements.txt └── train_classifier.py /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisioneng/sign-language-detector-python/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisioneng/sign-language-detector-python/HEAD/README.md -------------------------------------------------------------------------------- /collect_imgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisioneng/sign-language-detector-python/HEAD/collect_imgs.py -------------------------------------------------------------------------------- /create_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisioneng/sign-language-detector-python/HEAD/create_dataset.py -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | 3 | -------------------------------------------------------------------------------- /inference_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisioneng/sign-language-detector-python/HEAD/inference_classifier.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python==4.7.0.68 2 | mediapipe==0.9.0.1 3 | scikit-learn==1.2.0 4 | -------------------------------------------------------------------------------- /train_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisioneng/sign-language-detector-python/HEAD/train_classifier.py --------------------------------------------------------------------------------