您当前的位置:首页 > 计算机 > 编程开发 > Python

图像命名为指定长度序号

时间:01-16来源:作者:点击数:

数据集中,图像命名错误。

在这里插入图片描述
import os

# 图片所在路径
root_path = "F:\\01-02"
filename_list = os.listdir(root_path)
for filename in filename_list:
    if '-' in filename:
        src_img_path = os.path.join(os.path.abspath(root_path), filename)
        new_img_code = filename.split('-')[2].split('.')[0].zfill(5)
        dst_img_path = os.path.join(os.path.abspath(root_path), new_img_code + '.png')
        os.rename(src_img_path, dst_img_path)
        print('converting %s to %s ...' % (src_img_path, dst_img_path))

处理后

在这里插入图片描述
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门