#图形验证码通常处理方式
from PIL import Image
import tesserocr
image = Image.open(img_path).convert('L')
#image.show()
threshold = 80 #设置阈值
table = []
for i in range(256):
if i < threshold:
table.append(0)
else:
table.append(1)
image = image.point(table,'1')
#image.show
result = tesserocr.image_to_text(image)
#print(result)
《爬虫笔记》— 图形验证码处理
最新推荐文章于 2024-05-25 13:38:52 发布