当前位置:   article > 正文

python实现名字杂乱图片顺序整理_pthon 点击按钮显示图片名称无规律

pthon 点击按钮显示图片名称无规律

将所有的图片放到文件夹里,然后将图片重命名为“0.jpg”,“1.jpg”…"n.jpg"形式;

import os
path = r"C:\Users\sjh\Desktop\pic"   # 存放图片的地址,根据需求自行修改
filelist = os.listdir(path)  # 该文件夹下所有的文件(包括文件夹)
count = 0
# for file in filelist:
#     print(file)
for file in filelist:   # 遍历所有文件
    Olddir=os.path.join(path, file)   # 原来的文件路径
    if os.path.isdir(Olddir):   # 如果是文件夹则跳过
        continue
    filename = os.path.splitext(file)[0]   # 文件名,分离文件名与扩展名
    filetype = '.jpg'   # 文件扩展名
    # Newdir = os.path.join(path, str(count).zfill(6)+filetype)  # 用字符串函数zfill 以0补全所需位数
    Newdir = os.path.join(path, str(count) + filetype)
    os.rename(Olddir, Newdir)  # 重命名
    count += 1
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

当然,如果只是对文件夹中的乱序图片进行统一操作,则无需重新命名,直接根据文件名进行即可:

import os
import cv2 as cv
path = r"C:\Users\sjh\Desktop\pic"
filelist = os.listdir(path)  # 该文件夹下所有的文件(包括文件夹)
# count = 0
# for file in filelist:
#     print(file)
for file in filelist:   # 遍历所有文件
    Olddir = os.path.join(path, file)   # 原来的文件路径
    img = cv.imread(Olddir)
    #####加上自己要进行的操作###########
    cv.imshow('result',img)
    cv.waitKey(50)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

效果如下:在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/282660
推荐阅读
相关标签
  

闽ICP备14008679号