1

pytesseract を使用して画像をテキストに変換しています。pip コマンドで pytesseract のインストールに成功しました。しかし、スクリプトを実行すると、エラーが表示されます: No module named Tesseract.

これらは私のコードです:

from tesseract import image_to_string
image = Image.open('input-NEAREST.tif')
print image_to_string(image)

エラー :

Traceback (most recent call last):
  File "C:\Users\J's MAgic\Desktop\py\new1.py", line 1, in <module>
    from tesseract import image_to_string
ImportError: No module named tesseract
4

2 に答える 2