Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 pytesser OCR,并且我想在系统中进行相同的更改,以便可以从系统中的任何位置将其作为模块导入。我尝试使用(安装 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)