I am working on a task to extract the account number
from cheque images
. My current approach can be divided into 2 steps
Tesseract OCR
The second step is straight forward assuming we have properly localized the account number digits
I tried to localize account number digits using OpenCV
contours methods and using MSER
(Maximally stable extremal regions) but didn’t get useful results. It’s difficult to generalize pattern because
How can we approach this problem. Do I have to look for some deep learning
based approaches.
Thanks, everyone for the suggestions, I ended up training deep learning object detection method to localize Account number and it gave very good results as compared to OpenCV based methods