Python——验证码识别 Pillow + tesseract-ocr

拟墨画扇 提交于 2020-08-10 05:07:50

至于安装教程在这里不再重复说了,可以参考博客,网上有大把的教程

https://blog.csdn.net/testcs_dn/article/details/78697730

要是别的验证码是如下类型的

 

              

 

Python 代码如下

 

#!/usr/bin/python
# -*- coding:utf-8 -*-
from PIL import Image
import pytesseract

def recognize_captcha(img_path):
    im = Image.open(img_path).convert("L")
    threshold = 140
    table = []
    for i in range(256):
        if i < threshold:
            table.append(0)
        else:
            table.append(1)

    out = im.point(table, '1')
    num = pytesseract.image_to_string(out)
    return num


if __name__ == '__main__':

    img_path = "D:\\1flower\\test2.jpg"
    res = recognize_captcha(img_path)
    strs = res.split("\n")
    if len(strs) >=1:
        print (strs[0])

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!