gpt4 book ai didi

python - 我在 python 中使用 tesseract 包时出错

转载 作者:太空宇宙 更新时间:2023-11-04 02:14:37 24 4
gpt4 key购买 nike

我正在尝试使用 pytesseract OCR 读取支票中的文本。我已经安装了此任务所需的所需 python 包,例如pip 安装 pytesseract。

但是,当我尝试使用包读取文件时,出现以下错误:

 pytesseract.image_to_string(im, lang='eng')
Traceback (most recent call last):

File "<ipython-input-17-d7d9f430493b>", line 1, in <module>
pytesseract.image_to_string(im, lang='eng')

File "C:\Users\BRIGHT\Anaconda3\lib\site-packages\pytesseract\pytesseract.py", line 294, in image_to_string
return run_and_get_output(*args)

File "C:\Users\BRIGHT\Anaconda3\lib\site-packages\pytesseract\pytesseract.py", line 202, in run_and_get_output
run_tesseract(**kwargs)

File "C:\Users\BRIGHT\Anaconda3\lib\site-packages\pytesseract\pytesseract.py", line 172, in run_tesseract
raise TesseractNotFoundError()

TesseractNotFoundError: tesseract is not installed or it's not in your path

这个错误是有道理的,因为我实际上导入了包而没有收到任何错误。但是当我尝试使用它时,我得到了错误。

这是我的代码:

from PIL import Image
import pytesseract

im=Image.open('BritishChequeAnnotated.jpg')
text=pytesseract.image_to_string(im, lang='eng')

最佳答案

tesseract 的文档清楚地说明了这一点。

https://pypi.org/project/pytesseract/

# If you don't have tesseract executable in your PATH, include the following:
pytesseract.pytesseract.tesseract_cmd = r'<full_path_to_your_tesseract_executable>'

关于python - 我在 python 中使用 tesseract 包时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52929872/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com