--
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.
TesseractRect()
SetImage() (reportedly, Pix* variant is more likely to be supported)
SetRectangle()
Then
Recognize()
or Get*Text()
Since your images are binary, use 1 bit per pixel.
Having implemented this approach, you will get image passing work
extremely fast.
Warm regards,
Dmitri Silaev
Warm regards,
Dmitri Silaev
As a suggestion, this is what you can do:
- Go to tesseractmain.cpp and look for the constructor
- Check the function call SetImage(), which takes first param as uinT8 type
buffer, which is the image data
- Pass on your own buffer
You need to write the routines for bringing in your binary data (bunch of
separate binarized characters). For that you can use the tessDLLs and supply
your structs in tesserect system, directly.
Hope this helps!
--
Vicky Budhiraja
http://www.sitarasoft.com/
hi, all
zl2k
--