python 根据文件夹下的图像文件生成对应的txt文件

import os

def img_generate_txt(path):
    filelist = os.listdir(path)

    for file in filelist:
      # print(file)
      a = file.split('.')[0]
      # print(a)
      file_txt = path + a + '.txt'
      print(file_txt)
      file1 = open(file_txt,'w')


path = './test/'        # 图像文件夹路径
img_generate_txt(path)

python 根据文件夹下的图像文件生成对应的txt文件_第1张图片
python 根据文件夹下的图像文件生成对应的txt文件_第2张图片

你可能感兴趣的:(python)