大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
对文件夹中的图片进行自动按照序号排序,如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)
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/197125.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...