Python: 利用os 获取文件夹中每一张图片的名字 并保存至 txt
Python 利用os 获取文件夹中每一张图片的名字 并保存至 txt目标:将同一文件夹中的每张图的名字保存下来。操作方式:用了os库和一个for循环注意:主要是地址的,包括图片的地址和保存的地址。#!/usr/bin/python#coding:utf-8import ospath_imgs = '/home/ground_truth/'for files in os.li...
·
Python 利用os 获取文件夹中每一张图片的名字 并保存至 txt
目标:将同一文件夹中的每张图的名字保存下来。
操作方式:用了os库和一个for循环
注意:主要是地址的,包括图片的地址和保存的地址。
#!/usr/bin/python
#coding:utf-8
import os
path_imgs = '/home/ground_truth/'
for files in os.listdir(path_imgs):
print(files)
img_path = path_imgs+ files
with open("ground_truth/ground.txt", "a") as f:
f.write(str(img_path) + '\n')
更多推荐
已为社区贡献5条内容
所有评论(0)