I've looked all over the Google code site but am just not finding anything that explains how to use Tesseract from an API perspective. Anyone know where I can find this?
Asked
Active
Viewed 2.5k times
5 Answers
8
UPDATE 2012/05/26
You can download it from here (version 3.01): http://code.google.com/p/tesseract-ocr/downloads/detail?name=tesseract-3.01-doc-html.tar.gz&can=2&q=

annouk
- 172
- 2
- 7
0
Now the tesseract project has moved to github, and it provide the tesseract ocr online docs as pdf: https://github.com/tesseract-ocr , you can download to read.

geohuit
- 1
0
I suggest starting here for a quick introduction and tutorial:
Which includes a link to:
It may be best to look at the raw source for baseapi
(linked above) because the code/comments don't seem to cooperate perfectly well with doxygen (at least for that file's docs). However, you can presently find a doxygen-generated API reference at:
Which is probably what you ultimately want to use as a top-level reference.

Community
- 1
- 1

Brent Bradburn
- 51,587
- 17
- 154
- 173
-
A simplified interface to Tesseract is provided by the [OpenCV Scene Text Recognition API](http://docs.opencv.org/trunk/d8/df2/group__text__recognize.html). – Brent Bradburn May 06 '16 at 17:27