其他分享
首页 > 其他分享> > 爬虫验证码灰度化,二值化操作

爬虫验证码灰度化,二值化操作

作者:互联网

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2022/1/18 20:51
# @Author : Lhtester
# @Site :
# @File : 灰度化.py
# @Software: PyCharm

import pytesseract
from PIL import Image

image= Image.open('./data/ChechCode_02.jpg')
text = pytesseract.iamge_to_string(image)

#模式L为灰色图像,它的每个像素用8个BIT表示
#0表示黑,255表示白,其他数字表示不同的灰度
image = image.convert('L')
#黑白化处理,自定义灰度界限,大于这个值为黑色,小于这个值为白色
threshould = 150
table = []
for i in range(256):
if i<threshould:
table.append(0)
else:
table.append(1)
#图片二值化
image = image.point(table,'1')
#保存
image.save('./data/ChechCode_01.jpg')


















标签:ChechCode,image,爬虫,jpg,灰度,table,二值化,append
来源: https://www.cnblogs.com/anhao-world/p/15819889.html