All Projects → PatrickLib → Captcha_recognize

PatrickLib / Captcha_recognize

Licence: apache-2.0
Image Recognition captcha without image segmentation 无需图片分割的验证码识别

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Captcha recognize

recaptcha
An easy-to-use reCAPTCHA package
Stars: ✭ 55 (-87.75%)
Mutual labels:  captcha
roundcube-rcguard
Roundcube plugin to enforce reCAPTCHA for users who have too many failed logins.
Stars: ✭ 18 (-95.99%)
Mutual labels:  captcha
Captcha
行为验证码(滑动拼图、点选文字),前后端(java)交互,包含h5/Android/IOS/flutter/uni-app的源码和实现
Stars: ✭ 370 (-17.59%)
Mutual labels:  captcha
CaptchaSolver
Um simples projeto para fazer o reconhecimento do captcha usado pelo jogo bombcrypto.
Stars: ✭ 52 (-88.42%)
Mutual labels:  captcha
NCaptcha
.NET/Mono CAPTCHA
Stars: ✭ 15 (-96.66%)
Mutual labels:  captcha
Cnn keras
CNN | Keras/PyTorch | CAPTCHA recognition(卷积神经网络、Keras/PyTorch框架、验证码识别)
Stars: ✭ 256 (-42.98%)
Mutual labels:  captcha
2captcha-python
Python 3 package for easy integration with the API of 2captcha captcha solving service to bypass recaptcha, hcaptcha, funcaptcha, geetest and solve any other captchas.
Stars: ✭ 140 (-68.82%)
Mutual labels:  captcha
Undetected Chromedriver
Custom Selenium Chromedriver | Zero-Config | Passes ALL bot mitigation systems (like Distil / Imperva/ Datadadome / CloudFlare IUAM)
Stars: ✭ 365 (-18.71%)
Mutual labels:  captcha
jcaptcha
可扩展java验证码工具类。支持字母,中文,数字运算;同时可配置验证码尺寸,背景色,干扰项
Stars: ✭ 33 (-92.65%)
Mutual labels:  captcha
Ng Recaptcha
Angular component for Google reCAPTCHA
Stars: ✭ 367 (-18.26%)
Mutual labels:  captcha
react-hcaptcha
hCaptcha Component Library for ReactJS
Stars: ✭ 169 (-62.36%)
Mutual labels:  captcha
recaptcha-2-phpbbmod
reCAPTCHA v2 for phpBB Olympus 3.0
Stars: ✭ 14 (-96.88%)
Mutual labels:  captcha
Buster
Captcha solver extension for humans
Stars: ✭ 4,244 (+845.21%)
Mutual labels:  captcha
SimCaptcha
✅ 一个简单易用的点触验证码 (前端+后端)
Stars: ✭ 49 (-89.09%)
Mutual labels:  captcha
Captcha
A Lightweight Pure JavaScript Captcha for Node.js. No C/C++, No ImageMagick, No Canvas.
Stars: ✭ 372 (-17.15%)
Mutual labels:  captcha
2captcha-php
PHP package for easy integration with the API of 2captcha captcha solving service to bypass recaptcha, hcaptcha, funcaptcha, geetest and solve any other captchas.
Stars: ✭ 25 (-94.43%)
Mutual labels:  captcha
Gocaptcha
A captcha service written in golang
Stars: ✭ 254 (-43.43%)
Mutual labels:  captcha
Baiduyun deeplearning competition
百度云魅族深度学习应用大赛
Stars: ✭ 393 (-12.47%)
Mutual labels:  captcha
Captcha Killer
burp验证码识别接口调用插件
Stars: ✭ 368 (-18.04%)
Mutual labels:  captcha
Simple Php Captcha
A simple PHP CAPTCHA script.
Stars: ✭ 361 (-19.6%)
Mutual labels:  captcha

Introduce

Translation: English 中文

image recognition captchas using TensorFlow, no need image segmentation, run on ubuntu 16.04, python 2.7

captchacaptchacaptchacaptchacaptchacaptcha

accuracy 99.7% judged by captcha_eval.py, training size 50000, after 20000 steps captcha generator: https://github.com/lepture/captcha

captchacaptchacaptchacaptchacaptchacaptcha

accuracy 52.1% judged by captcha_eval.py, training size 100000, after 200000 steps captcha generator: https://github.com/Gregwar/CaptchaBundle

Dependence

python 2.7

Anaconda2 4.3.1

https://www.continuum.io/downloads#linux

TensorFlow 1.1

https://github.com/tensorflow/tensorflow

captcha

https://pypi.python.org/pypi/captcha/0.1.1

Usage

1.prepare captchas

put your own captchas in <current_dir>/data/train_data/ for training, <current_dir>/data/valid_data/ for evaluating and <current_dir>/data/test_data/ for recognize testing, images file name must be label_*.jpg or label_*.png and recommend size 128x48. you can also use default generation:

python captcha_gen_default.py

2.convert dataset to tfrecords

the result file will be <current_dir>/data/train.tfrecord and <current_dir>/data/valid.tfrecord

python captcha_records.py

3.training

train and evaluate neural network on CPU or one single GPU

python captcha_train.py

you can also train over multiple GPUs

python captcha_multi_gpu_train.py

4.evaluate

python captcha_eval.py

5.recognize

read captchas from <current_dir>/data/test_data/ for recogition

python captcha_recognize.py

result like this

...
image WFPMX_num552.png recognize ----> 'WFPMX'
image QUDKM_num468.png recognize ----> 'QUDKM'
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].