python基于opencv批量生成验证码的示例


Posted in Python onApril 28, 2021

基本思路是使用opencv来把随机生成的字符,和随机生成的线段,放到一个随机生成的图像中去。

  虽然没有加复杂的形态学处理,但是目前看起来效果还不错

  尝试生成1000张图片,但是最后只有998张,因为有有重复的,被覆盖掉了。

  代码如下:

import cv2
import numpy as np
line_num = 10
pic_num = 1000
path = "./imgs/"
def randcolor():        
    return (np.random.randint(0,255),np.random.randint(0,255),np.random.randint(0,255))
    
def randchar():
    return chr(np.random.randint(65,90))
    
def randpos(x_start,x_end,y_start,y_end):
    return (np.random.randint(x_start,x_end),
            np.random.randint(y_start,y_end))
    
    
img_heigth = 60
img_width = 240
for i in range(pic_num):
    img_name = ""
    #生成一个随机矩阵,randint(low[, high, size, dtype])
    img = np.random.randint(100,200,(img_heigth,img_width, 3), np.uint8)
    #显示图像
    #cv2.imshow("ranImg",img)
    
    x_pos = 0
    y_pos = 25
    for i in range(4):
        char = randchar()
        img_name += char
        cv2.putText(img,char,
                    (np.random.randint(x_pos,x_pos + 50),np.random.randint(y_pos,y_pos + 35)), 
                    cv2.FONT_HERSHEY_SIMPLEX,
                    1.5,
                    randcolor(),
                    2,
                    cv2.LINE_AA)
        x_pos += 45
    
    #cv2.imshow("res",img)
    
    #添加线段
    for i in range(line_num):
        img = cv2.line(img,
                       randpos(0,img_width,0,img_heigth),
                       randpos(0,img_width,0,img_heigth),
                        randcolor(),
                        np.random.randint(1,2))
        
    #cv2.imshow("line",img)
    cv2.imwrite(path + img_name + ".jpg",img)
    #cv2.waitKey(0)                  
    #cv2.destroyAllWindows()

  结果:

python基于opencv批量生成验证码的示例

以上就是python基于opencv批量生成验证码的示例的详细内容,更多关于python 批量生成验证码的资料请关注三水点靠木其它相关文章!

Python 相关文章推荐
python合并文本文件示例
Feb 07 Python
使用Python判断IP地址合法性的方法实例
Mar 13 Python
numpy找出array中的最大值,最小值实例
Apr 03 Python
Python中IP地址处理IPy模块的方法
Aug 16 Python
Python 一行代码能实现丧心病狂的功能
Jan 18 Python
linux 下selenium chrome使用详解
Apr 02 Python
解析python 中/ 和 % 和 //(地板除)
Jun 28 Python
python pandas dataframe 去重函数的具体使用
Jul 20 Python
pycharm远程连接服务器并配置python interpreter的方法
Dec 23 Python
浅谈matplotlib默认字体设置探索
Feb 03 Python
python函数指定默认值的实例讲解
Mar 29 Python
python图像处理 PIL Image操作实例
Apr 09 Python
python基于tkinter制作下班倒计时工具
Apr 28 #Python
Python爬虫之爬取哔哩哔哩热门视频排行榜
k-means & DBSCAN 总结
秀!学妹看见都惊呆的Python小招数!【详细语言特性使用技巧】
Apr 27 #Python
Python代码,能玩30多款童年游戏!这些有几个是你玩过的
python实现腾讯滑块验证码识别
Apr 27 #Python
python实现调用摄像头并拍照发邮箱
Apr 27 #Python
You might like
php cli 小技巧
2013/06/03 PHP
一个简单安全的PHP验证码类、PHP验证码
2016/09/24 PHP
PHP两种实现无级递归分类的方法
2017/03/02 PHP
PHP实现QQ登录的开原理和实现过程
2018/02/04 PHP
Mac系统下搭建Nginx+php-fpm实例讲解
2020/12/15 PHP
Javascript代码混淆综合解决方案-Javascript在线混淆器
2006/12/18 Javascript
jquery tools 系列 scrollable(2)
2009/09/06 Javascript
javascript for循环从入门到偏门(效率优化+奇特用法)
2012/08/01 Javascript
js实现图片轮播效果
2015/12/19 Javascript
15款最好的Bootstrap在线编辑器
2016/08/03 Javascript
值得学习的bootstrap fileinput文件上传工具
2016/11/08 Javascript
js实现适配不同的屏幕大小
2017/04/10 Javascript
vue-lazyload图片延迟加载插件的实例讲解
2018/02/09 Javascript
Vue+mui实现图片的本地缓存示例代码
2018/05/24 Javascript
vue源码学习之Object.defineProperty对象属性监听
2018/05/30 Javascript
JavaScript深入V8引擎以及编写优化代码的5个技巧
2019/06/24 Javascript
[43:24]2018DOTA2亚洲邀请赛3月29日 小组赛A组 LGD VS Liquid
2018/03/30 DOTA
python中列表元素连接方法join用法实例
2015/04/07 Python
Python中Random和Math模块学习笔记
2015/05/18 Python
python网络编程调用recv函数完整接收数据的三种方法
2017/03/31 Python
基于python历史天气采集的分析
2019/02/14 Python
Django模型序列化返回自然主键值示例代码
2019/06/12 Python
Pytest测试框架基本使用方法详解
2020/11/25 Python
html5跨域通讯之postMessage的用法总结
2013/11/07 HTML / CSS
ASICS印度官方网站:日本专业运动品牌
2020/06/20 全球购物
C有"按引用传递"吗
2016/09/06 面试题
《假如》教学反思
2014/04/17 职场文书
高等学院职业生涯规划书范文
2014/09/16 职场文书
党的群众路线教育实践活动对照检查材料(四风)
2014/09/27 职场文书
教师党员批评与自我批评发言稿
2014/10/15 职场文书
2015年党员公开承诺书范文
2015/01/22 职场文书
2015年管理人员工作总结
2015/05/13 职场文书
雷锋电影观后感
2015/06/10 职场文书
2016年九九重阳节活动总结
2016/04/01 职场文书
tensorflow中的梯度求解及梯度裁剪操作
2021/05/26 Python
一次SQL查询优化原理分析(900W+数据从17s到300ms)
2022/06/10 SQL Server