2

处理 OCR。我可以导入 pytesseract 并使用 image_to_string 但我想解决这个问题:

api = tesseract.TessBaseAPI()
api.SetVariable("tessedit_char_whitelist", "0123456789")
api.Init('.','eng',tesseract.OEM_DEFAULT)
api.SetPageSegMode(tesseract.PSM_AUTO)

这是将 tesseract 设置为仅检测数字或字母。当我运行我的代码时,我得到这个错误:

ImportError: No module named tesseract

我安装了 tesseract-ocr,也安装了 pytesseract。然而我不断收到这个错误。

4

2 回答 2

4

我在尝试在 Pycharm 中运行 pytesseract 时遇到了这个问题。确保您有 Tesseract 文件夹的环境路径 var。这样程序就知道使用安装位置的 tesseract.exe。

这就是我的路径:

于 2018-06-20T18:51:12.883 回答
3

您可以使用以下命令安装 tesseract

pip install tesseract
于 2017-04-06T07:41:01.640 回答