当前位置:网站首页>【pytorch】yolov5 训练自己的数据集
【pytorch】yolov5 训练自己的数据集
2022-07-06 11:23:00 【.云哲.】
1.labelme生成标签
2.labelme标签转成yolo标签
# -*- coding: utf-8 -*-
import xml.etree.ElementTree as ET
import pickle
import os
from os import listdir, getcwd
from os.path import join
import shutil
classes = ["cellphone", "person"]
def convert(size, box):
dw = 1./(size[0])
dh = 1./(size[1])
x = (box[0] + box[1])/2.0 - 1
y = (box[2] + box[3])/2.0 - 1
w = box[1] - box[0]
h = box[3] - box[2]
x = x*dw
w = w*dw
y = y*dh
h = h*dh
return (x,y,w,h)
def convert_annotation(path, save, image_id):
in_file = open("{}/{}.xml".format(path, image_id), "r", encoding="utf-8")
out_file = open("{}/{}.txt".format(save, image_id), "w", encoding="utf-8")
tree = ET.parse(in_file)
root = tree.getroot()
size = root.find("size")
w = int(size.find("width").text)
h = int(size.find("height").text)
for obj in root.iter("object"):
difficult = obj.find("difficult").text
cls = obj.find("name").text
if cls not in classes or int(difficult) == 1:
continue
cls_id = classes.index(cls)
xmlbox = obj.find("bndbox")
b = (float(xmlbox.find("xmin").text), float(xmlbox.find("xmax").text), float(xmlbox.find("ymin").text), float(xmlbox.find("ymax").text))
bb = convert((w, h), b)
out_file.write(str(cls_id) + " " + " ".join([str(a) for a in bb]) + '\n')
img_path = os.path.join(path, "{}.jpg".format(image_id))
save_path = os.path.join(save, "{}.jpg".format(image_id))
shutil.copy(img_path, save_path)
wd = getcwd()
if __name__ == '__main__':
# get image_ids
path = "val_voc"
save = "val"
txt_yolo = "val.txt"
image_ids = []
for file in listdir(path):
if file.endswith(".xml"):
image_id = file.replace(".xml", "")
image_ids.append(image_id)
# generate jpg and txt labels
for image_id in image_ids:
convert_annotation(path, save, image_id)
# write yolo
list_file = open(txt_yolo, "w", encoding="utf-8")
for image_id in image_ids:
txt_path = os.path.join(save, "{}.txt".format(image_id))
img_path = os.path.join(wd, save, "{}.jpg".format(image_id)) # 绝对路径
lines = open(txt_path, "r", encoding="utf-8")
write_line = "{} {}\n".format(img_path, " ".join([line.strip() for line in lines]))
list_file.write(write_line)
list_file.close()
3.yolov5数据文件格式
── coco128
├── images
│ ├── train
│ └── val
└── labels
├── train
└── val
$ cat 00009.txt
45 0.479492 0.688771 0.955609 0.5955
50 0.637063 0.732938 0.494125 0.510583
边栏推荐
- Modulenotfounderror: no module named 'PIL' solution
- Benefit a lot, Android interview questions
- Human bone point detection: top-down (part of the theory)
- Camel case with Hungarian notation
- helm部署etcd集群
- Handwritten online chat system (principle part 1)
- Analysis of frequent chain breaks in applications using Druid connection pools
- When visual studio code starts, it prompts "the code installation seems to be corrupt. Please reinstall." Solution to displaying "unsupported" information in the title bar
- Mathematical knowledge -- code implementation of Gaussian elimination (elementary line transformation to solve equations)
- Excel 中VBA脚本的简单应用
猜你喜欢
Yutai micro rushes to the scientific innovation board: Huawei and Xiaomi fund are shareholders to raise 1.3 billion
[depth first search] Ji suanke: a joke of replacement
Intelligent supply chain management system solution for hardware and electromechanical industry: digital intelligent supply chain "creates new blood" for traditional industries
打家劫舍III[后序遍历与回溯+动态规划]
ACTF 2022圆满落幕,0ops战队二连冠!!
On AAE
三面蚂蚁金服成功拿到offer,Android开发社招面试经验
Unlock 2 live broadcast themes in advance! Today, I will teach you how to complete software package integration Issues 29-30
Pychrm Community Edition calls matplotlib pyplot. Solution of imshow() function image not popping up
Xingnuochi technology's IPO was terminated: it was planned to raise 350million yuan, with an annual revenue of 367million yuan
随机推荐
Solution of intelligent management platform for suppliers in hardware and electromechanical industry: optimize supply chain management and drive enterprise performance growth
Master Xuan joined hands with sunflower to remotely control enabling cloud rendering and GPU computing services
同宇新材冲刺深交所:年营收9.47亿 张驰与苏世国为实控人
驼峰式与下划线命名规则(Camel case With hungarian notation)
QLabel 跑马灯文字显示
全套教学资料,阿里快手拼多多等7家大厂Android面试真题
数学知识——高斯消元(初等行变换解方程组)代码实现
Airiot IOT platform enables the container industry to build [welding station information monitoring system]
Use map function and split function to type multiple elements in one line
test about BinaryTree
R language uses rchisq function to generate random numbers that conform to Chi square distribution, and uses plot function to visualize random numbers that conform to Chi square distribution
史上超级详细,想找工作的你还不看这份资料就晚了
A method of removing text blur based on pixel repair
Digital "new" operation and maintenance of energy industry
[depth first search] Ji suanke: a joke of replacement
About NPM install error 1
Lucun smart sprint technology innovation board: annual revenue of 400million, proposed to raise 700million
PMP每日一练 | 考试不迷路-7.6
Meilu biological IPO was terminated: the annual revenue was 385million, and Chen Lin was the actual controller
AcWing 3537. Tree lookup complete binary tree