Hello, I have the below code 
```
import io
from PIL import Image
import tesserocr

with tesserocr.PyTessBaseAPI(path='') as api:
    image = Image.open('t1.png')
    api.setImage(image)
    api.Recognize()
    iterator = api.GetIterator()
    print(iterator.WordFontAttributes())
```
However, I am getting the error : RuntimeError: Failed to init API

So, I think the solution is to use --oem = 0, but how do I?

-- 
You received this message because you are subscribed to the Google Groups 
"tesseract-ocr" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tesseract-ocr+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tesseract-ocr/1717cf00-cc5e-4ed4-bea1-fd780251f03an%40googlegroups.com.

Reply via email to