YOLO格式数据集划分

YOLO格式的数据集划分

  • YOLO格式的数据集划分
    • YOLO格式的标签txt文件
    • 划分数据 版本二

YOLO格式的数据集划分

YOLO格式的标签txt文件

import os
import cv2
import random
from PIL import Image
# os.makedirs('labels_train')
# os.makedirs('labels_val')

img_train_path ='./custom/images/train/'  #图片训练集保存路径
img_val_path = './custom/ima

你可能感兴趣的:(目标检测,深度学习)