Tesseract image_to_string is empty
问题 I have a simple text in an image image_ball.png . Usually OCR of Tesseract works well, but for this certain image it returns always an empty string. In [1]: from PIL import Image In [2]: from pytesseract import image_to_string In [3]: img = Image.open("image_ball.png") In [4]: image_to_string(img) Out[5]: u'' I could not find a workaround up-to-now. How could I figure out what is going wrong with this image? The versions are: In [6]: import PIL In [7]: PIL.__version__ Out[7]: '4.0.0' $