我需要使用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')))
答案 0 :(得分:0)
您必须使用此安装textract,我们可以从任何扩展程序中提取文本。
# some python file
import textract
text = textract.process("path/to/file.extension")
您可以提供file
作为图片或pdf或任何文档。
为您的代码
text = textract.process("1.png")