当前位置:网站首页>快速批量修改VOC格式数据集标签的文件名,即快速批量修改.xml文件名
快速批量修改VOC格式数据集标签的文件名,即快速批量修改.xml文件名
2022-08-05 00:44:00 【佐咖】
快速批量修改VOC格式数据集标签的文件名,即快速批量修改.xml文件名,使用下面代码时,只需要修改两个路径即可,见下:
具体代码见下:
import os
class BatchRename():
''' 批量重命名文件夹中的xml文件 '''
def __init__(self):
self.path = 'coco/valxml' #表示需要命名处理的文件夹
self.save_path='coco/valxml 2'#保存重命名后的图片地址
def rename(self):
filelist = os.listdir(self.path) #获取文件路径
total_num = len(filelist) #获取文件长度(个数)
i = 1 #表示文件的命名是从1开始的
for item in filelist:
print(item)
if item.endswith('.xml'): #初始的图片的格式为jpg格式的(或者源文件是png格式及其他格式,后面的转换格式就可以调整为自己需要的格式即可)
src = os.path.join(os.path.abspath(self.path), item)#当前文件中图片的地址
dst = os.path.join(os.path.abspath(self.save_path), ''+str(i) + '.xml')#处理后文件的地址和名称,可以自己按照自己的要求改进
try:
os.rename(src, dst)
print ('converting %s to %s ...' % (src, dst))
i = i + 1
except:
continue
print ('total %d to rename & converted %d jpgs' % (total_num, i))
if __name__ == '__main__':
demo = BatchRename()
demo.rename()
以上方法就是快速批量修改VOC格式数据集标签的文件名,即快速批量修改.xml文件名。希望能帮助到你,多多支持,谢谢!
边栏推荐
- tiup uninstall
- TinyMCE禁用转义
- 2022 Nioke Multi-School Training Session H Question H Take the Elevator
- Bit rate vs. resolution, which one is more important?
- BC(转)[js]js计算两个时间相差天数
- Software testing interview questions: How many types of software are there?
- 软件测试面试题:系统测试的策略有?
- OPENWIFI实践1:下载并编译SDRPi的HDL源码
- QSunSync Qiniu cloud file synchronization tool, batch upload
- CNI(Container Network Plugin)
猜你喜欢
gorm joint table query - actual combat
金九银十面试跳槽季;你准备好了吗?
4. PCIe 接口时序
仅3w报价B站up主竟带来1200w播放!品牌高性价比B站投放标杆!
[idea] idea configures sql formatting
JUC thread pool (1): FutureTask use
Countdown to 1 day!From August 2nd to 4th, I will talk with you about open source and employment!
oracle create user
面试汇总:为何大厂面试官总问 Framework 的底层原理?
[FreeRTOS] FreeRTOS and stm32 built-in stack occupancy
随机推荐
4. PCIe 接口时序
2022牛客多校第三场 A Ancestor
Knowledge Points for Network Planning Designers' Morning Questions in November 2021 (Part 2)
After the staged testing is complete, have you performed defect analysis?
仅3w报价B站up主竟带来1200w播放!品牌高性价比B站投放标杆!
PCIe 核配置
软件测试面试题:您以往所从事的软件测试工作中,是否使用了一些工具来进行软件缺陷(Bug)的管理?如果有,请结合该工具描述软件缺陷(Bug)跟踪管理的流程?
ORA-00257
《WEB安全渗透测试》(28)Burp Collaborator-dnslog外带技术
PCIe Core Configuration
tiup status
2022 Nioke Multi-School Training Session H Question H Take the Elevator
Inter-process communication and inter-thread communication
Software Testing Interview Questions: What do test cases usually include?
【FreeRTOS】FreeRTOS与stm32内置堆栈的占用情况
Software testing interview questions: What are the seven-layer network protocols?
E - Distance Sequence (prefix and optimized dp
If capturable=False, state_steps should not be CUDA tensors
倒计时1天!8月2日—4日与你聊聊开源与就业那些事!
The principle of NMS and its code realization