I am working on a problem of handwritten digit recognition
. Basically, we need to recognize certain fields in documents like amount, account number, mobile number, etc.
Handwritten Digit recognition can be divided into 2 steps
- Digit segmentation
- Recognition of segmented digits
For step-2
we can use some pertained MNIST
models but the problem is how to segment the digits. I tried OpenCV contours but it is only helpful when digits are separated with blank pixels i.e. when they do not touch each other, but often user writes numbers with touching or connected digits
Can anyone suggest some deep learning or non deep learning based methods for this task
Sample Images