赞
踩
今天在写python读取图片中的内容的脚本的时候,常用的图像处理库包括Pillow和OpenCV。以下是使用Pillow库读取图片中的计算公式的示例代码:
from PIL import Image
import pytesseract
# 读取图片
img = Image.open('formula.png')
# 将图片转换为灰度图像
img = img.convert('L')
# 使用pytesseract识别图片中的文本
formula = pytesseract.image_to_string(img)
# 输出识别结果
print(formula)
遇到了如下问题:
通过核对代码内容,文件名称和文件路径等没有问题,包括把代码放到Linux上面跑都没有问题。
最后发现错误的原因是:在Python2和Python3中,tesseract所在的路径没有作为环境路径变量添加到Windows中。
在使pytesseract在windows上运行的步骤:
最后再执行代码脚本:
from PIL import Image
import pytesseract
# 读取图片
img = Image.open('formula.png')
# 将图片转换为灰度图像
img = img.convert('L')
# 使用pytesseract识别图片中的文本
formula = pytesseract.image_to_string(img)
# 输出识别结果
print(formula)
成功了。。。
无论什么时候不能忽视细节,常见的问题都是最简单、直接、基础的因素产生的。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。