python自动截取需要区域,进行图像识别的方法

作者:tonghua1116 时间:2021-05-14 11:04:42 

实例如下所示:


import os
os.chdir("G:\Python1\Lib\site-packages\pytesser")
from pytesser import *
from pytesseract import image_to_string
from PIL import Image
from PIL import ImageGrab

#截图,获取需要识别的区域
x = 345
y = 281
m = 462
n = 327

k = 54
for i in range(2,6):
box = (x,y,m,n)
img = ImageGrab.grab(box)
img.save("G:\Python1\Lib\site-packages\pytesser\kangkang"+str(i)+".png")
#img.show()
y+=54
n+=54

#截图完毕后,开始图像识别
names=["kangkang2.png","kangkang3.png","kangkang4.png","kangkang5.png"]
for name in names:
im = Image.open(name)
text = image_to_string(im)
print(name+":"+text)

来源:https://blog.csdn.net/tonghua1116/article/details/54670155

标签:python,图像,识别
0
投稿

猜你喜欢

  • 常用的9个JavaScript图表库详解

    2024-04-22 22:34:52
  • python二叉树类以及其4种遍历方法实例

    2023-07-25 02:22:48
  • python opencv 画外接矩形框的完整代码

    2023-02-25 05:00:46
  • windows7下调试ASP+ACCESS错误“未找到提供程序 该程序可能未正确安装”解决办法

    2009-12-26 18:35:00
  • 最全的mysql查询语句整理

    2024-01-27 03:10:01
  • Python StringIO如何在内存中读写str

    2022-08-01 13:45:31
  • JS实现倒序输出的几种常用方法示例

    2024-04-22 13:27:15
  • TensorFlow tf.nn.conv2d_transpose是怎样实现反卷积的

    2022-10-07 21:49:15
  • 优雅使用GoFrame共享变量Context示例详解

    2024-04-27 15:27:02
  • Python序列的推导式实现代码

    2022-04-24 05:53:46
  • 关于JavaScript中的this指向问题总结篇

    2024-04-29 13:21:25
  • python的列表List求均值和中位数实例

    2023-07-09 13:06:16
  • 基于Python的OCR实现示例

    2021-03-05 20:58:43
  • Mysql my.ini 配置文件详解

    2024-01-28 06:16:57
  • python神经网络tensorflow利用训练好的模型进行预测

    2022-09-27 17:33:17
  • asp MD5加密方式使用建议

    2011-03-30 11:17:00
  • php实现上传图片保存到数据库的方法

    2024-05-09 14:48:35
  • Python安装Imaging报错:The _imaging C module is not installed问题解决方法

    2021-05-19 06:09:39
  • Javascript程序优化

    2008-06-02 13:12:00
  • asp如何处理页面执行时发生的错误?

    2009-11-14 20:43:00
  • asp之家 网络编程 m.aspxhome.com