from PIL import Image
import pytesseract
image = Image.open('v1.jpg')
print pytesseract.image_to_string(image)
仅仅能识别简单的验证码 复杂的识别不出来
比如上面这张图就么没问题
python 验证码识别 【特别简单的数字验证码】
阅读 121
2023-03-10
from PIL import Image
import pytesseract
image = Image.open('v1.jpg')
print pytesseract.image_to_string(image)
仅仅能识别简单的验证码 复杂的识别不出来
比如上面这张图就么没问题
相关推荐
精彩评论(0)