Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 986 Bytes

12.0.1 TensorFlow 验证码识别.md

File metadata and controls

26 lines (19 loc) · 986 Bytes

12.0.1 TensorFlow 验证码识别

看下生成验证码是怎样的,这里我们使用 Python 的 captcha 库来生成即可,这个库默认是没有安装的,所以这里我们需要先安装这个库,另外还需要安装 pillow 库

$ pip install captcha pillow

安装模块可以通过这样的方式来一次性安装多个

编写生成验证码的代码:

from captcha.image import ImageCaptcha
from PIL import Image

text = 'hello'
image = ImageCaptcha()
captcha = image.generate(text)
captcha_image = Image.open(captcha)
captcha_image.show()

image.png

这样就通过captcha 生成了一张验证码图片了。

更多请转到崔大博客:https://cuiqingcai.com/5709.html