赞
踩
额外推荐项目,身份证号识别项目从制作数据集到完整识别全流程可参考如下项目,仅项目与数据集供学习使用切勿用于商用或违法犯罪,仅供学习:
PPOCRLabel半自动标注工具的环境配置比较麻烦,所以这里作者把已经配置好的环境放在百度云盘里面,直接免费提供。conda仓库环境配置,直接解压到本地: Anaconda3/envs/ 目录下即可 提取码:6666 点我直接下载
Win10
本项目简单介绍Style text 与ppocrlabel标注工具,使得收集数据更加容易,使用Style text 工具批量制作所需要的数据,然后使用ppocrlabel标注工具做出模型所需要的数据集格式,可直接点我进入项目地址查看代码详情。希望大家多交流观点、介绍经验,共同学习进步,可以互相关注♥。个人主页
PaddleOCR旨在打造一套丰富、领先、且实用的OCR工具库,助力使用者训练出更好的模型,并应用落地。
Style-Text主要框架包括:1.文本前景风格迁移模块 2.背景抽取模块 3.融合模块。经过这样三步,就可以迅速实现图像文本风格迁移
git clone https://gitee.com/paddlepaddle/PaddleOCR.git
#代码实现,将文件夹内不规整的图片名字,逐个输出为示例:“2_1.jpg 、2_2.jpg、2_3.jpg ”等等 ,前面的 "2" 是文件夹名 "_1,_2,_3..." import os import re """批量修改文件夹的图片名""" def ReFileName(dirPath,pattern): """ :param dirPath: 文件夹路径 :pattern:正则 :return: """ # 对目录下的文件进行遍历 i = 1 for file in os.listdir(dirPath): # 判断是否是文件 file_new = os.path.join (dirPath, file) if os.path.isfile(file_new) == True and file_new.endswith(".jpg"): #c= os.path.basename(file) newName = re.sub(pattern,'M_'+str(i)+'.jpg', file) #手动修改文件夹名M x,y,z = newName.partition ('.') #按.分割 newName = x+".jpg" newFilename = file.replace(file, newName) # 重命名 os.rename(os.path.join(dirPath, file), os.path.join(dirPath, newFilename)) i+=1 print("图片名已全部修改成功") if __name__ == '__main__': dirPath = r"D:\PyCharm\Pro\OCR\PaddleOCR\PPOCRLabel\train_data\/M" #M文件夹内的图片路径 pattern = re.compile(r'.*') ReFileName(dirPath,pattern)
[详细]
-->赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。