pytesseract导入

时间:2018-01-23 06:50:32

标签: python python-3.5 pytesser

在pytesseract导入中出现以下错误。

代码:

from pytesseract import image_to_string
from PIL import Image

tessdata_dir_config='--tessdata-dir "C:\\Program Files (x86)\\Tesseract-OCR\\tessdata"'
im = Image.open(r'E:\\mini project\\tally.jpg')
print(im)
#text = image_to_string(im, lang = 'eng')

print(image_to_string(im,lang='eng',config=tessdata_dir_config))



<PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=500x703 at 0x1B0D1E13828>
  

追踪(最近一次通话):     文件&#34; E:\ mini project \ main.py&#34;,第10行,in       打印(image_to_string(1M,郎=&#39;主机&#39;,配置= tessdata_dir_config))     文件&#34; C:\ Python35 \ lib \ site-packages \ pytesseract \ pytesseract.py&#34;,第136行,在image_to_string中       不错不错=)     在run_tesseract中的文件&#34; C:\ Python35 \ lib \ site-packages \ pytesseract \ pytesseract.py&#34;,第82行       proc = subprocess.Popen(command,stderr = subprocess.PIPE)     文件&#34; C:\ Python35 \ lib \ subprocess.py&#34;,第950行, init       restore_signals,start_new_session)     文件&#34; C:\ Python35 \ lib \ subprocess.py&#34;,第1220行,在_execute_child中       STARTUPINFO)   FileNotFoundError:[WinError 2]系统找不到指定的文件

0 个答案:

没有答案