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')
Logo

CSDN联合极客时间,共同打造面向开发者的精品内容学习社区,助力成长!

更多推荐