I am trying to make an OCR library using Haar classifier of opencv.But its not working well.So can you tell me what are the steps for making an OCR? and will it be possible by using Haar classifier?
Asked
Active
Viewed 4,637 times
0
-
1This is not how Stackoverflow works... sry!!! – Zaid Amir Jun 06 '12 at 06:10
1 Answers
6
There are lots of books, tutorials etc available on googling.
But there are two books which would be useful for you.
1) Handbook of Character Recognition and Document Image Analysis by H. Bunke and P. S. P. Wang
They have got some good deep theory in it.
And you can see a simple digit OCR using kNN in C++ here: Basic OCR in OpenCV
And you can see a simple Python implementation of OCR using kNN in this SOF: Simple Digit Recognition OCR in OpenCV-Python
In the OpenCV svn, you can see a new Python sample for hand-written recognition using ANN : ...svn\opencv\samples\python2\digits.py . The code is in Python, but all OpenCV functions would be available in C++ too.
Hope this would be sufficient for a start up.

Community
- 1
- 1

Abid Rahman K
- 51,886
- 31
- 146
- 157