skyduy / CAPTCHA_generator

CAPTCHA generator using cv2.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CAPTCHA generator. Just for fun :).

The CAPTCHA created like this:

1 2 3

Actually this is used to generate training data of project CNN_keras

example:

from captcha import Captcha

letter_set = '0123456789'
letters_per_img = 5
min_width, min_height = 128, 36
c = Captcha(min_width, min_height, letter_set, letters_per_img, debug=True)
c.batch_create_img(5)

TODO

  • Add more customizable params.
  • Improve performance.

About

CAPTCHA generator using cv2.

License:MIT License


Languages

Language:Python 100.0%