对文件夹下所有图片批量重命名(python实现)

对文件夹中的图片进行自动按照序号排序,如0000---9999:

代码实现如下:

import os
path = "/home/aa/qxq/project/fruits/database/fruitsVegtables/tomato"
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=os.path.splitext(file)[1]  
    Newdir=os.path.join(path,str(count).zfill(4)+filetype)  
    os.rename(Olddir,Newdir)

    count+=1

 

在ubuntu下直接新建一个rename.py,然后,将上述代码复制进去,保存,然后在rename.py 目录下,运行输入命令:

python rename.py

 

效果图如下:

对文件夹下所有图片批量重命名(python实现)_第1张图片

#coding:utf-8
import cv2
import os
#使用ostu算法进行阈值分割,中间涉及到使用opencv进行文件读 和 保存,可以参考 
root_path="/home/image/med_project/practice/ours"
# dir=root_path+"ours"+"/"
print("hello")
for root,dir, files in os.walk(root_path):
    print("dir:",dir)
    print("files:",files)
    print("root:",root)
 
    for file in files:
        # root_path + "images" + "/" + str(file)
        print("root_path+str(file):  ",root_path+"/"+str(file))
        img1 = cv2.imread(root_path+"/"+str(file))
        gray = cv2.cvtColor(img1, cv2.COLOR_BGR2GRAY)
        ret1, th1 = cv2.threshold(gray, 0, 255, cv2.THRESH_OTSU)
        cv2.imwrite("/home/image/med_project/practice/"+str(file),th1)
 

 

你可能感兴趣的:(Ubuntu)