资源简介
图片-xml匹配、重命名、读取xml并重新生成xml
代码片段和文件信息
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
import shutil
origin_dir = ‘D:\\ocr\\five_categories\\5_class_icon5\\5_class_icon4_labeled\\collect‘ #xml和jpg数量不对的目录
target_dir = ‘D:\\ocr\\five_categories\\5_class_icon5\\5_class_icon4_labeled\\collect-after‘ #转移后的目录
pattern = re.compile(‘(.*)\.(.*)‘)
def to_move():
cursor = None
last_name = None
for f in sorted(os.listdir(origin_dir)):
try:
name postfix = re.match(pattern f).groups()
if name == cursor:
yield last_name
yield f
else:
cursor = name
last_name = f
except Exception as e:
print(e)
for i in to_move():
origin = os.path.join(origin_dir i)
if os.path.isfile(origin):
target = os.path.join(target_dir i)
print(‘move {origin} to {target}‘)
shutil.move(origin target)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5090 2019-03-28 21:05 my_icdar13_to_voc.py
文件 3305 2019-04-11 21:34 voc_to_icdar13.py
文件 995 2019-04-13 22:22 match_quantity.py
目录 0 2019-04-13 22:22 __MACOSX\
文件 176 2019-04-13 22:22 __MACOSX\._match_quantity.py
文件 274 2019-03-28 20:28 rename.py
- 上一篇:学生作业管理python实现
- 下一篇:lua加密工具.zip
相关资源
- python实现SGBM图像匹配算法
- python实现灰度直方图均衡化
- scrapy_qunar_one
- Python学习全系列教程永久可用
- python简明教程.chm
- 抽奖大转盘python的图形化界面
- 双边滤波器实验报告及代码python
- python +MYSQL+HTML实现21蛋糕网上商城
- Python-直播答题助手自动检测出题搜索
- OpenCV入门教程+OpenCV官方教程中文版
- Python 串口工具源码+.exe文件
- Python开发的全栈股票系统.zip
- Python操作Excel表格并将其中部分数据写
- python书籍 PDF
- 利用python绘制散点图
- python+labview+No1.vi
- 老男孩python项目实战
- python源码制作whl文件.rar
- python3.5可用的scipy
- PYTHON3 经典50案例.pptx
- 计算机科学导论-python.pdf
- python模拟鼠标点击屏幕
- windows鼠标自动点击py脚本
- 鱼c小甲鱼零基础学python全套课后题和
- Python 练习题100道
- Practical Programming 2nd Edition
- wxPython Application Development Cookbook
- python 3.6
- Python 3.5.2 中文文档 互联网唯一CHM版本
- python3.5.2.chm官方文档
评论
共有 条评论