我是文本提取的新手。当我尝试使用 pytesseract 从 png 图像中提取文本时

from PIL import Image
import pytesseract
s=Image.open('d:\\test.png')
print(pytesseract.image_to_string(s))

我收到错误
python - pytesseract,WindowsError : [Error 2] The system cannot find the file specified-LMLPHP
这是图像(test.png)的问题吗?test.png是车牌的图像。我是否需要安装其他任何东西。

最佳答案

根据 PyPi information 的说法,您缺少一个额外的条件:



该链接将我重定向到 https://github.com/tesseract-ocr/tesseract

坦率地说,我很失望该软件包没有给您提供更多信息,说明您缺少此信息,无论如何,一旦您安装了底层 tesseract 命令 pytesseract 应该可以正常工作:)

关于python - pytesseract,WindowsError : [Error 2] The system cannot find the file specified,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36813344/

10-12 19:44