博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
图片验证码灰度化、二值化处理
阅读量:5846 次
发布时间:2019-06-18

本文共 616 字,大约阅读时间需要 2 分钟。

import tesserocrfrom PIL import Imageimage = Image.open('code.jpg')image = image.convert('L')threshola = 127table = []for i in range(256):    if i < threshola:        table.append(0)    else:        table.append(1)image = image.point(table, '1')image.show()result = tesserocr.image_to_text(image)print(result)

  

from PIL import  Imageimport subprocessimage = Image.open('code.jpg')image = image.point(lambda x: 0 if x<127 else 255)image.save('code2.jpg')subprocess.call(["tesseract", 'code2.jpg', "output"])with open('output.txt', 'r') as f:    print(f.read())

  

转载于:https://www.cnblogs.com/shamobus/p/9537899.html

你可能感兴趣的文章
SQL语句学习
查看>>
What is Cluster Aware Updating in Windows Server 2012?
查看>>
进老男孩的自我介绍和决心书
查看>>
线上Linux服务器运维安全策略经验分享
查看>>
Android一些问题的解决方案
查看>>
ios之UIToolBar
查看>>
网络ASI
查看>>
Luogu P4707 重返现世
查看>>
目标与绩效管理实战专家胡立
查看>>
axios 中断请求
查看>>
2014手机分析图
查看>>
Linux PID 1 和 Systemd
查看>>
一元多项式相加
查看>>
commandLink/commandButton/ajax backing bean action/listener method not invoked (转)
查看>>
软件工作的大环境
查看>>
梅沙教育APP简单分析-版本:iOS v1.2.21-Nathaneko-佳钦
查看>>
Word中如何设置图片与段落的间距为半行
查看>>
JQuery this和$(this)的区别及获取$(this)子元素对象的方法
查看>>
关于分区索引与全局索引性能比较的示例
查看>>
沟通:用故事产生共鸣
查看>>