--
You received this message because you are subscribed to the Google Groups "tesseract-ocr" group.
To post to this group, send email to tesser...@googlegroups.com.
To unsubscribe from this group, send email to tesseract-oc...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/tesseract-ocr?hl=en.
> Q1
> Init(datapath, language, OcrEngineMode);
> What is the normal setting of OcrEngineMode?
Currently OEM_OcrEngineMode = TESSERACT_ONLY would be sufficient for all cases.
> Q2: which of the following is USED In normal running mode of
> tessearct.exe to recognize text
The values of the variables you can see within the code of Recognize()
(e.g. tesseract_->tessedit_resegment_from_boxes) are often loaded from
config files. Usually recognition runs with no config files at all, so
you can assume all these variables to be "false". In that way you can
examine the control paths and figure out what procedures get called at
the recognition stage.
> Q3: which of the following is USED In normal running mode of
> tessearct.exe to recognize text
You meant "to train" - copy-paste. Training is a 2-stage process:
1) Making box files. Requires two config files: "batch.nochop" and "makebox"
2) Generation of .tr files. Needs "nobatch" and "box.train"
You can find the above configs inside the tessdata/configs and
tessdata/tessconfigs directories in Tess's distribution. Check these
files and you'll understand what usually happens while training. Plain
old step-by-step debugging is also of use ))
Warm regards,
Dmitry Silaev
--
Don Marang
Vinux Software Development Coordinator (vinux.org.uk)
There is just so much stuff in the world that, to me, is devoid of any real
substance, value, and content that I just try to make sure that I am working
on things that matter.
Dean Kamen
--------------------------------------------------
From: "Cong Nguyen" <congng...@gmail.com>
Sent: Monday, February 21, 2011 5:04 AM
To: "tesseract-ocr" <tesser...@googlegroups.com>
Subject: Re: Wrappers for tessearct3.01?
> Sorry, but it's not spam!
>
> I try to send message 3 times, but I cannot see my post! :)
>
> So, I try to post once more....
>
> I have just implemented a simple wrapper here
> http://code.google.com/p/tesseractdotnet/w/list.
> Hope it is helpful.
>
> Cong.
I does not plan to implement delegate event at engine-level, so you should
manage your implementations at high-level.
Example:
....
string result = _ocrProcessor.Apply(bitmap);
List<Word> detectedWords = _ocrProcessor.RetriveResultDetail();
.... // you can raise event/do some things here if you want...
Thanks,
Cong.
-----Original Message-----
From: tesser...@googlegroups.com [mailto:tesser...@googlegroups.com]
On Behalf Of devTess
Sent: Thursday, February 24, 2011 9:03 PM
To: tesseract-ocr
Subject: Re: Wrappers for tessearct3.01?
--