我正在使用 pytesseract、textract、pyocr 等模块,所有模块都带有 Image 模块。打开 .jpg 文件后,我可以显示该文件,但我无法从文件中读取文本。我使用了三种模块,但每次都遇到同样的错误:系统找不到指定的文件。我使用 Python 3.5。
错误出现在 pytesseract in config=config) 中这部分代码的配置中#这里有问题。
你有什么想法?我在互联网上搜索过,我找到了一些像 lang='eng' 这样的例子,但仍然没有任何效果。
pytesseract 模块的代码示例非常简单:
im = Image.open("C:/Temp/Example.jpg")
im.show() # it works
text = pytesseract.image_to_string(im)
print(text)
我还使用了一些属性,但没有任何效果......
如果某人知道发生了什么,请告诉我。