You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 14, 2018. It is now read-only.
from PIL import Image
from pyocr import pyocr
py_img = Image.open('text.png')
for tool in pyocr.get_available_tools():
print("Using pyocr tool '%s'" % (tool.get_name()))
print(tool.image_to_string(py_img))
Where text.png is:
As this is a fairly simple case I would have expected the outcome to be the same however the outcome is:
Using pyocr tool 'Tesseract (C-API)'
Empty page!!
Using pyocr tool 'Tesseract (sh)'
3/2
Is this a bug or are the two tools configured differently by default?
I know the Tesseract (C-API) works properly on my computer as I have used it successfully with similar but different input, however in this very particular case, it fails.
The text was updated successfully, but these errors were encountered:
I observed a similar problems when making the tests. The output of libtesseract and tesseract (sh) are slightly different. Quite frankly I'm not sure where this difference comes from.
Currently, my main theory is that it comes from the way images are read:
with libtesseract, the input image is loaded by PIllow, turned into a raw image and then passed directly to libtesseract.
With tesseract (sh), Pillow read the image, save it back as a .bmp, then tesseract loads this .bmp using libleptonica and pass it raw to Tesseract.
Maybe somewhere there is a slight difference in the way images are encoded / decoded that makes the OCR reacts differently.
I don't know if it's related to this issue, but one difference between tesseract and libtesseract is the default psm. The default psm in tesseract is '3', while in libtesseract it's '6'.
I got this simple example:
Where text.png is:
As this is a fairly simple case I would have expected the outcome to be the same however the outcome is:
Is this a bug or are the two tools configured differently by default?
I know the Tesseract (C-API) works properly on my computer as I have used it successfully with similar but different input, however in this very particular case, it fails.
The text was updated successfully, but these errors were encountered: