gpt4 book ai didi

python - 文件未找到错误: [WinError 2] The system cannot find the file specified while trying to use pytesseract

转载 作者:太空宇宙 更新时间:2023-11-03 14:25:01 25 4
gpt4 key购买 nike

我正在尝试编写一个 python 脚本来从图像中提取文本,但我不断收到此错误。下面给出了脚本。 Error

from PIL import Image

from pytesseract import image_to_string

print (image_to_string(Image.open('samp.png')))

print (image_to_string(Image.open('test-english.jpg'), lang='eng'))

最佳答案

尝试以下步骤,这对我有用。

1) 从 here 下载 tesseract-OCR并将其安装在位置 C:/Program Files

2)编写以下代码

from PIL import Image

from pytesseract import image_to_string

#pytesseract.pytesseract.tesseract_cmd = '<full_path_to_your_tesseract_executable>'

pytesseract.pytesseract.tesseract_cmd = 'C:/Program Files/Tesseract-OCR/tesseract.exe' 

3)现在运行这个

print(pytesseract.image_to_string(Image.open('D:/image_file.jpg')))

希望有帮助!

关于python - 文件未找到错误: [WinError 2] The system cannot find the file specified while trying to use pytesseract,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47698680/

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