2

我需要使用 pytesseract 从这张图片中提取文本:在此处输入图片描述

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

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

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

1 回答 1

0

您必须使用它安装textract我们可以从任何扩展名中提取文本。

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

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

text = textract.process("1.png")
于 2017-07-11T07:31:38.377 回答