从图像中获取文本

时间:2017-07-11 07:02:01

标签: python image pytesser

我需要使用pytesseract从这张图片中提取文字:enter image description here

然而,我使用了pytesseract。它不会工作。这是我的代码:

try:
    import Image
except ImportError:
    from PIL import Image
import pytesseract

print(pytesseract.image_to_string(Image.open('1.png')))

1 个答案:

答案 0 :(得分:0)

您必须使用此安装textract,我们可以从任何扩展程序中提取文本。

# some python file
import textract
text = textract.process("path/to/file.extension")

您可以提供file作为图片或pdf或任何文档。 为您的代码

text = textract.process("1.png")