File size: 1,038 Bytes
b69e88a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
import os
import shutil
import random
# 获取所有图片文件
image_dir = 'images'
image_files = [f for f in os.listdir(image_dir) if f.endswith(('.png', '.jpg', '.jpeg'))]
# 随机打乱图片列表
random.shuffle(image_files)
# 计算分割点
split_point = len(image_files) // 2
# 创建两个目标文件夹
os.makedirs('dataset_1', exist_ok=True)
os.makedirs('dataset_2', exist_ok=True)
# 分别移动文件到两个文件夹
for i, img_file in enumerate(image_files):
# 获取对应的txt文件名
txt_file = os.path.splitext(img_file)[0] + '.txt'
# 确定目标文件夹
target_dir = 'dataset_1' if i < split_point else 'dataset_2'
# 移动图片和txt文件
shutil.move(os.path.join(image_dir, img_file), os.path.join(target_dir, img_file))
if os.path.exists(os.path.join(image_dir, txt_file)):
shutil.move(os.path.join(image_dir, txt_file), os.path.join(target_dir, txt_file))
print(f'已将{len(image_files)}个图文对平均分配到dataset_1和dataset_2文件夹中')
|