# 文件夹路径
img_path = r'E:/workspace/PyCharmProject/dem_feature/dem\512/label'
# txt 保存路径
save_txt_path = r'./images.txt'
# 读取文件夹中的所有文件
imgs = os.listdir(img_path)
# 图片名列表
names = []
# 过滤:只保留png结尾的图片
for img in imgs:
if img.endswith(".png"):
names.append(img)
txt = open(save_txt_path,'w')
for name in names:
name = name[:-4] # 去掉后缀名.png
txt.write(name + '\n') # 逐行写入图片名,'\n'表示换行
txt.close()
"""
#-*-coding:utf-8-*-
# @author: wangyu a beginner programmer, striving to be the strongest.
# @date: 2022/7/7 20:25
"""
import os
# 文件夹路径
img_path = r'E:/workspace/PyCharmProject/dem_feature/dem/512/label'
# txt 保存路径
save_txt_path = r'./images.txt'
# 读取文件夹中的所有文件
imgs = os.listdir(img_path)
# 图片名列表
names = []
# 过滤:只保留png结尾的图片
for img in imgs:
if img.endswith(".png"):
names.append(img)
txt = open(save_txt_path,'w')
for name in names:
name = name[:-4] # 去掉后缀名.png
txt.write(name + '\n') # 逐行写入图片名,'\n'表示换行
txt.close()
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/weixin_43598687/article/details/125666776
内容来源于网络,如有侵权,请联系作者删除!