在 Ubuntu 14.04 上安装 pytesser
Installing pytesser on Ubuntu 14.04
我想使用 pytesser OCR,我想在系统中进行相同的更改,以便我可以将其作为模块从系统的任何位置导入。
我尝试使用 (Installing pytesser) 上给出的建议,但它对我不起作用。
你可以使用
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)
我想使用 pytesser OCR,我想在系统中进行相同的更改,以便我可以将其作为模块从系统的任何位置导入。 我尝试使用 (Installing pytesser) 上给出的建议,但它对我不起作用。
你可以使用
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)