对文件夹下所有图片批量重命名(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

 

效果图如下:

#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)
 

 

  • 18
    点赞
  • 59
    收藏
    觉得还不错? 一键收藏
  • 9
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 9
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值