├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Project Report.pdf ├── README.md ├── __pycache__ ├── digit_recognition.cpython-36.pyc └── textshow.cpython-36.pyc ├── app.py ├── assets ├── choosing_model.png ├── demo.gif ├── digits.png ├── digits.png.png ├── out.png ├── pygame_window.png └── sample_images.png ├── cnn_model ├── digit_classifier.h5 └── model.py └── process_image.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Files 2 | *.pyc 3 | assets/out.png 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/LICENSE -------------------------------------------------------------------------------- /Project Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/Project Report.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/digit_recognition.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/__pycache__/digit_recognition.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/textshow.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/__pycache__/textshow.cpython-36.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/app.py -------------------------------------------------------------------------------- /assets/choosing_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/assets/choosing_model.png -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /assets/digits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/assets/digits.png -------------------------------------------------------------------------------- /assets/digits.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/assets/digits.png.png -------------------------------------------------------------------------------- /assets/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/assets/out.png -------------------------------------------------------------------------------- /assets/pygame_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/assets/pygame_window.png -------------------------------------------------------------------------------- /assets/sample_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/assets/sample_images.png -------------------------------------------------------------------------------- /cnn_model/digit_classifier.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/cnn_model/digit_classifier.h5 -------------------------------------------------------------------------------- /cnn_model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/cnn_model/model.py -------------------------------------------------------------------------------- /process_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surya-veer/RealTime-DigitRecognition/HEAD/process_image.py --------------------------------------------------------------------------------