当前位置:   article > 正文

During handling of the above exception, another exception occurred解决方案_pywinauto.timings.timeouterror during handling of

pywinauto.timings.timeouterror during handling of the above exception, anoth

During handling of the above exception, another exception occurred解决方案

前言

今天在写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)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

遇到了如下问题:
在这里插入图片描述

解决方案

通过核对代码内容,文件名称和文件路径等没有问题,包括把代码放到Linux上面跑都没有问题。

最后发现错误的原因是:在Python2和Python3中,tesseract所在的路径没有作为环境路径变量添加到Windows中。

在使pytesseract在windows上运行的步骤:

  1. https://www.continuum.io/downloads安装Python2或Python3;
  2. http://digi.bib.uni-mannheim.de/tesseract/tesseract-ocr-setup-4.00.00dev.exe安装tesseract for windows;
  3. 将tesseract目录作为PATH环境变量添加到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)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

成功了。。。
在这里插入图片描述
在这里插入图片描述

总结

无论什么时候不能忽视细节,常见的问题都是最简单、直接、基础的因素产生的。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/121321
推荐阅读
相关标签
  

闽ICP备14008679号