以下はイメージ上のテキストを読むための私のpythonスクリプトです。後者のように正しく動作しない場合t
は+
またはf
となります。この問題の対処方法を知りたいのですか? 私はまた、私が読むことを試みているファイルを添付しました。Python PILイメージがテキストが正常に動作しない
import tesserocr
from PIL import Image
print tesserocr.tesseract_version() # print tesseract-ocr version
print tesserocr.get_languages() # prints tessdata path and list of available languages
image = Image.open('test.png')
#print tesserocr.image_to_text(image) # print ocr text from image
# or
print tesserocr.file_to_text('test.png')
@sachin上記の回答を確認しましたか? – thewaywewere