爬虫 : 验证码
程序员文章站
2022-07-14 17:14:10
...
先安装腾讯云笔记里的下载
腾讯云笔记 : https://note.youdao.com/web/#/file/recent/note/086A1E35EC9D4D9594CFC2E61D8024C1/
import pytesseract
from PIL import Image
image = Image.open('code.jpg')
# image = Image.open('code3.jpg')
#彩色图编程灰度图
image = image.convert('L')
threshold = 169
table = []
for i in range(256):
if i<threshold:
table.append(0)
else:
table.append(1)
image = image.point(table,'1')
# image.show()
text = pytesseract.image_to_string(image)
print(text)
如果没出结果
按两次shift跳转到pytesseract.py中
修改路径
上一篇: 爬虫处理普通验证码
下一篇: python爬虫验证码的处理(云打码)
推荐阅读
-
react native中的聊天气泡及timer封装成的发送验证码倒计时
-
【项目实战】数据爬虫 + 数据清洗 + 数据可视化+开源代码啦
-
java正则表达式简单使用和网页爬虫的制作代码
-
python网络爬虫和文档内容提取
-
Java 随机生成验证码(支持大小写字母、数字、随机字体)的实例
-
Android利用CountDownTimer实现点击获取验证码倒计时效果
-
Python使用Srapy框架爬虫模拟登陆并抓取知乎内容
-
Java爬虫实现爬取京东上的手机搜索页面 HttpCliient+Jsoup
-
利用html5 canvas破解简单验证码及getImageData接口应用
-
spring整合kaptcha验证码的实现