Using Tesseract OCR with Python
31–40 of 50 posts
Re: Using Tesseract OCR with Python
#32Re: Using Tesseract OCR with Python
#33If you want native and complete access to tesseract's API you can use tesserocr: https://github.com/sirfz/tesserocr
Re: Using Tesseract OCR with Python
#34Teaseract is ok printed material that's neatly organized, but other than that it seems the only other programmatic ocr is google cloud vision. It's a hundred times better, but unfortunately I need to OCR documents I can't contractual show the mighty G
In the "better than Tesseract" category is also Microsoft Azure OCR (not as good as Google) and the OCR.space OCR API (also not as good as Google, but 100* times cheaper/free, and supports PDF). The best - and most expensive - solution is still Abbyy OCR. They provide an SDK than can be used locally. A new local OCR solution is Anyline.io, but I have not used them yet.
Re: Using Tesseract OCR with Python
#35Earlier quoted context omitted.
In the "better than Tesseract" category is also Microsoft Azure OCR (not as good as Google) and the OCR.space OCR API (also not as good as Google, but 100* times cheaper/free, and supports PDF). The best - and most expensive - solution is still Abbyy OCR. They provide an SDK than can be used locally. A new local OCR solution is Anyline.io, but I have not used them yet.
I'm trying to read things like street signs, speed limits, store names, from not-necessarily-axis-aligned pictures - so far it seems only Google OCR can do those (and does them quite well). Is Abbyy worth trying for that use?
http://blog.mapillary.com/product/2017/02/06/towards-global-...
It seems likely that Google is doing something similar.
Re: Using Tesseract OCR with Python
#36If you plan on using tesseract definitely try out their 4.0 beta, which uses LSTMs. https://github.com/tesseract-ocr/tesseract/wiki/4.0-with-LST...
> The Tesseract 4.00 neural network subsystem is integrated into Tesseract as a line recognizer.
The LSTM is used in layout analysis, not in character recognition.
Re: Using Tesseract OCR with Python
#37I'm combining opencv and pytesseract in order to process some scanned forms. Doing this I was able to link 70k forms to a database previously filled by professional typists. Now I have a huge data set I can use to train ML algorithms, I'm experimenting with several of them. I have no formal training in CV, so my impression is that recognition is relatively easy, the hard thing is the preprocessing need in order to no…
Once you have thresholded text boxes that are quite legible, you can train your CNN's and LSTMS to read text from images.
Re: Using Tesseract OCR with Python
#38I am surprised at the lack of any mention of SikuliX.
Re: Using Tesseract OCR with Python
#39Earlier quoted context omitted.
In the "better than Tesseract" category is also Microsoft Azure OCR (not as good as Google) and the OCR.space OCR API (also not as good as Google, but 100* times cheaper/free, and supports PDF). The best - and most expensive - solution is still Abbyy OCR. They provide an SDK than can be used locally. A new local OCR solution is Anyline.io, but I have not used them yet.
I'm trying to read things like street signs, speed limits, store names, from not-necessarily-axis-aligned pictures - so far it seems only Google OCR can do those (and does them quite well). Is Abbyy worth trying for that use?
Re: Using Tesseract OCR with Python
#40We are trying automate the entire loan application and processing. So, this involved a lot of character recognition stuff as our target group have their financial documents as hard copies. Helping them autofill their information would make their task easier as well as avoid human errors while typing. So, after reading a few articles, I first designed a OCR using google’s OCR library tesseract. The classifier produced…
is this for US banks ? I'm assuming not. > It provided us the coordinates of all the texts and all we had to do was look for texts similar to an Account number and IFSC from a cheque book. Using some regex it was easy to find closely matching strings Could you explain what you mean by this ? We are trying to read shopping receipts, but I have ZERO background in image processing... so have been trying to figure out wh…