识别验证码

from PIL import Image
from pytesseract import *
# 加载图片
image = Image.open('test4.jpg')
# 识别过程
text = image_to_string(image)
print(text)
 

猜你喜欢

转载自blog.csdn.net/weixin_41752427/article/details/81086462