Tagged Questions
Tesseract is an OCR (Optical Character Recognition) engine originally developed at HP Labs and now available as an open source library with development sponsored by Google.
21
votes
8answers
1k views
Extracting code from photograph of T-shirt via OCR
I recently saw someone with a T-shirt with some Perl code on the back. I took a photograph of it and cropped out the code:
Next I tried to extract the code from the image via OCR, so I installed ...
14
votes
3answers
8k views
Is there any open source OCR project for the iPhone out there?
I'm looking for an open source or free OCR project for the iPhone. Maybe there is some port of tesseract-ocr for the iPhone?
What I've found so far:
How to compile Unix Apps for iPhone
Thanks for ...
10
votes
13answers
7k views
OCR Web Service
I am searching for an OCR web service (eventually open source, preferably free) that simply receives an image and returns the text of the image in writing.
I've looked at tesseract, OCRopus and GOCR ...
9
votes
3answers
17k views
OCR with the Tesseract interface
How do you OCR an tiff file using Tesseract's interface in c#? Currently I only know how to do it using the executable.
8
votes
2answers
231 views
Extracting paragraph breaks from OCR text?
I'm trying to recreate the paragraphs and indentations from the output of OCR'd image text, like so:
Input (imagine that this is an image, not typed):
Output (with a few mistakes):
As you can ...
6
votes
3answers
3k views
Tesseract OCR Library - Learning Font
Well I'm using a complied .NET version of this OCR which can be found @ http://www.pixel-technology.com/freeware/tessnet2/
I have it working, however the aim of this is to translate license plates, ...
6
votes
3answers
491 views
Best way to recognize characters in screenshot?
What would you recommend for recognizing all characters from a screenshot ? The screenshot is perfectly clear (only black text on a white background), also I can choose any starndard font for the text ...
6
votes
3answers
2k views
Limit characters tesseract is looking for
Is it possible to limit the set of characters that tesseract is looking for (e.g. search only for letters a-z)? That would improve my results greatly.
6
votes
5answers
4k views
What is the ideal font for OCR?
Does anybody have any experience with different fonts for OCR? I am generating an ID then trying to scan it with tesseract. At the moment I am just T&E'n different fonts, but this seems pretty ...
5
votes
4answers
553 views
Can I use OCR to detect font style (bold, italic)?
I am interested in using OCR to extract bold and italic words from a simple text. For example, if I input a clear image with text like so:
"The quick brown fox jumps over the lazy dog."
I would like ...
5
votes
2answers
1k views
c++ Tesseract or any other OCR lib
I'm looking for an explanation / API doc / examples of how to use (and train?) Tesseract in C++, nothing useful on the google Tesseract page, and yet to find something over the web.
Anyone useful ...
4
votes
2answers
180 views
Tesseract - change language file location
I am making an AIR project, which will need some OCR capabilities, so i decided to use tesseract (now i try to get it working on Windows).
My problem is, that can not change the location of the ...
4
votes
3answers
2k views
Delphi / Tesseract OCR: Can somebody help me get this new DLL working in Delphi?
There is this great open-source OCR component that Google has been developing:
http://code.google.com/p/tesseract-ocr/
They have a new version out (version 3) at the beginning of October 2010.
But ...
4
votes
3answers
7k views
Tesseract Example for Iphone
I have compiled tesseract for using it in xcode following: http://iphone.olipion.com/cross-compilation/tesseract-ocr
I obtain the .a file, import it as framework in the iphone project, and update the ...
3
votes
1answer
74 views
Optical Character Recognition for Web Use
Is there any way to simulate the functionality of a website such as http://www.onlineocr.net/ or http://www.newocr.com/ where the uploaded document is converted to raw text and then can be edited and ...
3
votes
1answer
197 views
Where are the Tesseract API docs?
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?
3
votes
1answer
263 views
Tesseract how to improve speed in recognition and also accuracy?
I've seen that to limit scan error you can define a whitelist for characters.
But I couldn't find information for the bool numericMode in the ocr.Init(@"c:\temp", "fra", false);
Suppose you would ...
3
votes
2answers
337 views
Tesseract confuses two numbers
I'm writing an application to scan numbers from an image.
The numbers are using the OCR-B font and may also contain + and > characters.
This is my source image:
The scans using Tesseract ...
3
votes
3answers
870 views
Alternative to Tesseract OCR Training?
For the past 3 months I've been trying to train the Tesseract
With identifying a collection of images I've had, due a real lack
of proper documentation, and very high level of complexity I'm ...
3
votes
1answer
678 views
How to make tesseract to give relevant results in the presence of noise?
I am using tesseract 3.0.0 and I bumped into the following problem:
When there is something too small for tesseract to recognize it seems it's merged with
other fragments. As a result nothing ...
3
votes
1answer
857 views
How to make tesseract to recognize only numbers, when they are mixed with letters?
I want to use tesseract to recognize only numbers. The problem is that I have mixture of
numbers & letters and when I use SetVariable("tessedit_char_whitelist", "0123456789")
for every symbol ...
3
votes
1answer
632 views
Is there any way to improve tesseract OCR with small fonts?
I'm trying to use tesseract-OCR via python-tesseract to read a low resolution font that looks like this:
Unfortunately that image returns
ZIJZHZI
I think the resolution is too low and that is ...
3
votes
3answers
1k views
Is number recognition on iPhone possible in real-time?
I need to recognise numbers from the camera image on iPhone, in real-time. I know there will be no more than 5 digits on the image.
Is this problem realistic to solve given the computational ...
3
votes
1answer
2k views
Training tesseract to use with iPhone
I am trying to use tesseract-2.04 in my iPhone application and just want to detect the numbers. What I am doing here is first I am cross compiling tesseract to generate lib file using this post ...
3
votes
4answers
3k views
Python Tesseract OCR question
I have this image:
I want to read it to a string using python, which I didn't think would be that hard. I came upon tesseract, and then a wrapper for python scripts using tesseract.
So I started ...
3
votes
3answers
450 views
How to give best chance of success to an OCR software?
I am using Tesseract OCR (via pytesser) and PIL (Python Image Library) for automated test of an application.
I am checking that the displayed text is ok by making a screenshot and getting the text ...
3
votes
5answers
1k views
How do I enlarge a picture so that it is 300 DPI?
The accepted answer to the question C++ Library for image recognition: images containing words to string recommended that you:
Upsize/Downsize your input image to 300 DPI.
How would I do this... I ...
3
votes
3answers
912 views
Invoking via command line versus JNI
I need to invoke tesseract OCR (its an open source library in C++ that does Optical Character Recognition) from a Java Application Server. Right now its easy enough to run the executable using ...
2
votes
0answers
13 views
Adding Blackletter Font Support to Tesseract OCR Engine
I'm working on getting the Lincoln font to work in Tesseract, and I'm getting abysmal results, even after going through the wildly complicated training process.
This is what the font looks like, so ...
2
votes
1answer
81 views
Extracting and parsing specific layout info from OCR engine
I'm attempting to parse layout information from OCR engines with PHP, except they are not giving any details.
I have both Tesseract (with Leptonica) and Cuneiform installed. Supposedly Cuneiform is ...
2
votes
1answer
278 views
tesseract-ocr how to includ baseapi.h
I followed the instructions I found in form of tessesract on how to includ baseapi.h.
i am using:
vs2010
Version tesseract 3.01
i try to understand how to use baseapi.h.
test program:
#define ...
2
votes
0answers
180 views
Training Tesseract [closed]
I am trying to train tesseract to recorgnize some images but the manual isn't clear, do you know of any simple and straight forward guide for training tesseract?
Thank you.
2
votes
0answers
100 views
How to get coordinates of recognized characters
I have a very simple OCR app based on Tesseract. After the recognition
step, I also provide a user verification step that allows correction
in case OCR is wrong. To improve the user interface, I plan ...
2
votes
1answer
144 views
Tesseract parse image and return null
I have problem in tesseract method. i use below code and my application directly stop.Below is my jni.cpp file.
struct native_data_t {
native_data_t() : image_obj(NULL), image_buffer(NULL) {}
...
2
votes
1answer
306 views
Configuring tesseract for XCODE project(IPHONE)
I have downloaded tesseract, configured it and got some .a files too. But after adding the framework files and running my XCODE project, it is giving plenty of errors from the framework libraries ...
2
votes
1answer
462 views
Error while using tesseract to extract the text in the image using android
I built the tesseract ocr for android using android tesseract tool and everything went fine. I also got the library files. When I tried to use the java wrappers to access the native methods, the ...
2
votes
2answers
783 views
c# OCR can't recognize digits (tesseract 2)
I'm trying to extract digits from the following:
It fails, I get a ~ in return. I'm using google's tesseract 2, using C# (open source c# wrapper) and now I'm wondering, is this image too crappy to ...
2
votes
1answer
359 views
Tesseract problem with mftraining stage
I've successfully created a box file with tesseract
now after running the unicharset_extractor
having it creating the unicharset file that looks like:
...
n 3 NULL -1
s 3 NULL 23
t 3 NULL 43
...
...
2
votes
1answer
614 views
Tessnet2 for .Net - exits at the tessocr.Init call
I have a .net console app running in Visual Studio 10, Windows Vista Home Premium. I am trying to get the tessnet2 example to work. here is my code:
Ocr ocr = new Ocr();
using (var ...
2
votes
3answers
3k views
Tesseract.NET in C#
Do you know of step by step guide of how to use bins and dlls in http://www.pixel-technology.com/freeware/tessnet2/
I spent 2 days trying to use this by when compiling i am being asked for a dll that ...
2
votes
2answers
2k views
Open source OCR for Chinese
I've searched around for open source OCR for Chinese. But without any luck there rarely seems to be some open source OCR (for Chinese) that are usable.
So I am here wondering:
Is there any open ...
2
votes
1answer
2k views
Tesseract OCR in C# [closed]
Possible Duplicate:
OCR with the Tesseract interface
Just wondering if anyone has got a sample project or compliled dll of the tesseract ocr engine running in C#? I have tried going through ...
2
votes
1answer
7k views
Using tesseract on android
I am working on a android project that uses tesseract OCR engines..I
have been searching on internet from past few days about any support for
tesseract for android platform..But I didnt get any ...
1
vote
1answer
22 views
Creating a camera activity optimized / suitable for OCR
I'm trying to create a camera activity for taking photos to be OCR'd. Here's what I wish to accomplish:
A resizable box in the middle of the camera preview to indicate which particular area will be ...
1
vote
1answer
53 views
C#: How to create a TIFF file that's readable by tesseract OCR?
I want to let tesseract ORC run over an image file, to scan the content.
The problem seems to be that tesseract not only requires TIFF, but it also requires the tiff file to be in a certain format.
...
1
vote
1answer
112 views
Advanced use of Tesseract OCR
I'm using the Tesseract OCR for an application I'm writing. I just want to recognize the text on some areas from a picture I get from time to time. The Basic calls work at the moment
...
1
vote
0answers
83 views
Get text position with tesseract 2.04 and Java
I'm performing OCR using Tesseract 2.04 in some images, and now i've to get the precise position of the text ocearized. But this version don't return this information.
I need this to generate a ...
1
vote
1answer
64 views
What are the common OCR errors with capitals?
What are the common errors in OCR (optical character recognition) with capital letters?
E.g. FOR -> FOB
1
vote
1answer
146 views
how to detect orientation of a scanned document?
I'd to detect and, if necessary, correct the orientation of a scanned document image. I am already able to deskew documents, however it still might occur, that a document is upside down and it needs ...
1
vote
1answer
80 views
Can not use ChoiceIterator in tesseract
First of all i want to confirm that i understand choice iterator right.
For example if i have a word on an image "scope",
choice iterator must give me something like "s" and maybe after Next(), "5".
...