1

我想使用 pytesser OCR,并且我想在系统中进行相同的更改,以便可以从系统中的任何位置将其作为模块导入。我尝试使用(安装 pytesser)上给出的建议,但它对我不起作用。

4

1 回答 1

4

您可以使用

pip install pytesseract

您应该使用 PIL 打开图像并提供 pytesseract。PIL,是 Python 图像库的缩写。只是一个图像库。

pytesseract 是 tesseract 的包装器。

from PIL import Image
import pytesseract 
im = Image.open('/home/xxxxxxx/Downloads/img.jpg')
text = pytesseract.image_to_string(im)
print (text)
于 2017-02-27T06:41:02.863 回答