我需要使用 pytesseract 从这张图片中提取文本:在此处输入图片描述
但是,我使用了 pytesseract。它不会工作。这是我的代码:
try:
import Image
except ImportError:
from PIL import Image
import pytesseract
print(pytesseract.image_to_string(Image.open('1.png')))
您必须使用它安装textract我们可以从任何扩展名中提取文本。
# some python file
import textract
text = textract.process("path/to/file.extension")
您可以提供file
图像或 pdf 或任何文档。为您的代码
text = textract.process("1.png")