https://github.com/mattmezza/knn-digit-char-recognition
This python program helps you kickstart with digits recognition using OpenCV and k-nearest-neighbor algorithm
https://github.com/mattmezza/knn-digit-char-recognition
classification digit digit-recognition highlight knearest-neighbor-algorithm
Last synced: 3 months ago
JSON representation
This python program helps you kickstart with digits recognition using OpenCV and k-nearest-neighbor algorithm
- Host: GitHub
- URL: https://github.com/mattmezza/knn-digit-char-recognition
- Owner: mattmezza
- License: mit
- Created: 2016-06-22T13:08:39.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-07-01T14:48:25.000Z (over 9 years ago)
- Last Synced: 2025-02-13T15:36:33.078Z (9 months ago)
- Topics: classification, digit, digit-recognition, highlight, knearest-neighbor-algorithm
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Recognition of digits and characters
=========
```bash
digit-recognition.py --classifier-dir --img-dir [--teach] [--debug]
digit-recognition.py -c -i [-t] [-d]
```
During the teaching phase the program will highlight all the found digits/chars at a first stage. Then, by typing enter the learning phase will start and, one per time, the software will highlight the current digit/char and you have to teach to it what's the digit by typing the correspondent key on the keyboard.
During the testing phase the program will use the k-nearest-neighbor algorithm to match the current found digit with the real one.
##### Matteo Merola