AttributeError: module 'pytesseract' has no attribute 'run_tesseract'
AttributeError: module 'pytesseract' has no attribute 'run_tesseract'
我正在尝试使用 run_tesseract 函数获取 hocr 输出,以便从银行收据图像中提取文本 images.However 我收到上述错误消息。我已经在我的笔记本电脑上安装了 Tesseract-OCR,并将其路径添加到我的系统路径 variable.I 有一个 windows 10 64 位操作系统,
我也尝试卸载并重新安装它,但无济于事。
import glob
import pytesseract
from PIL import Image
img_files=glob.glob('./NACH/*.jpg')
pytesseract.pytesseract.tesseract_cmd = 'C:\Program Files\Tesseract OCR\tesseract.exe'
#im=Image.open(img_files[0])
#im.load()
pytesseract.run_tesseract(img_files[0],'output',lang='eng',config='hocr')
我收到以下完整的错误消息:
AttributeError Traceback (most recent call last)
in
4 im=Image.open(img_files[0])
5 im.load()
----> 6 pytesseract.run_tesseract(img_files[0],'output',lang='eng',config='hocr')
7 #text = pytesseract.image_to_string(im)
8 #if os.path.isfile('output.html'):AttributeError: module
'pytesseract' has no attribute 'run_tesseract'
将 pytesseract.run_tesseract()
替换为 pytesseract.pytesseract.run_tesseract()
。
在评论中感谢 Nithin。将此添加为答案以将其关闭。
我正在尝试使用 run_tesseract 函数获取 hocr 输出,以便从银行收据图像中提取文本 images.However 我收到上述错误消息。我已经在我的笔记本电脑上安装了 Tesseract-OCR,并将其路径添加到我的系统路径 variable.I 有一个 windows 10 64 位操作系统,
我也尝试卸载并重新安装它,但无济于事。
import glob
import pytesseract
from PIL import Image
img_files=glob.glob('./NACH/*.jpg')
pytesseract.pytesseract.tesseract_cmd = 'C:\Program Files\Tesseract OCR\tesseract.exe'
#im=Image.open(img_files[0])
#im.load()
pytesseract.run_tesseract(img_files[0],'output',lang='eng',config='hocr')
我收到以下完整的错误消息:
AttributeError Traceback (most recent call last) in
4 im=Image.open(img_files[0])
5 im.load()
----> 6 pytesseract.run_tesseract(img_files[0],'output',lang='eng',config='hocr')
7 #text = pytesseract.image_to_string(im)
8 #if os.path.isfile('output.html'):AttributeError: module 'pytesseract' has no attribute 'run_tesseract'
将 pytesseract.run_tesseract()
替换为 pytesseract.pytesseract.run_tesseract()
。
在评论中感谢 Nithin。将此添加为答案以将其关闭。