当前位置:网站首页>Convert widerperson dataset to Yolo format
Convert widerperson dataset to Yolo format
2022-07-07 02:41:00 【-Brick adding Java】
- First according to train.txt and val.txt The content in , Put all the training set pictures and comments on train Under the folder , The same is true of validation sets .
import os
from pathlib import Path
from PIL import Image
import csv
import shutil
# coding=utf-8
def check_charset(file_path):
import chardet
with open(file_path, "rb") as f:
data = f.read(4)
charset = chardet.detect(data)['encoding']
return charset
def convert(size, box0, box1, box2, box3):
dw = 1. / size[0]
dh = 1. / size[1]
x = (box0 + box2) / 2 * dw
y = (box1 + box3) / 2 * dh
w = (box2 - box0) * dw
h = (box3 - box1) * dh
return (x, y, w, h)
if __name__ == '__main__':
path = 'F:\dataset\WiderPerson/train.txt'
with open(path, 'r') as f:
img_ids = [x for x in f.read().splitlines()]
for img_id in img_ids: # '000040'
img_path = 'F:\dataset\WiderPerson\Images/' + img_id + '.jpg'
with Image.open(img_path) as Img:
img_size = Img.size
ans = ''
label_path = img_path.replace('Images', 'Annotations') + '.txt'
outpath = 'train/' + img_id + '.txt'
with open(label_path, encoding=check_charset(label_path)) as file:
line = file.readline()
count = int(line.split('\n')[0]) # Number of pedestrians inside
line = file.readline()
while line:
cls = int(line.split(' ')[0])
if cls == 1 or cls == 2 or cls == 3:
xmin = float(line.split(' ')[1])
ymin = float(line.split(' ')[2])
xmax = float(line.split(' ')[3])
ymax = float(line.split(' ')[4].split('\n')[0])
print(img_size[0], img_size[1], xmin, ymin, xmax, ymax)
bb = convert(img_size, xmin, ymin, xmax, ymax)
ans = ans + '1' + ' ' + ' '.join(str(a) for a in bb) + '\n'
line = file.readline()
with open(outpath, 'w') as outfile:
outfile.write(ans)
shutil.copy(img_path, 'train/' + img_id + '.jpg')
- Separate the picture from the notes , Put them in their respective folders
import shutil
import os
if __name__ == '__main__':
label_path=r"train/"
imgids = os.listdir(label_path)
print(len(imgids))
n=0
for i in imgids:
n += 1
img_ids_path = label_path.replace('labels', 'images')+ i[0:6] +'.txt'
To_imgpath=r'train\anno/'
print(img_ids_path,To_imgpath,n)
shutil.copy(img_ids_path, To_imgpath)
OK!!!
Reference blog :https://blog.csdn.net/qq_44224801/article/details/123480032
Reference blog :https://blog.csdn.net/wukong168/article/details/122697243
边栏推荐
- Number theory --- fast power, fast power inverse element
- unity webgl自适应网页尺寸
- Difference and the difference between array and array structure and linked list
- Gee upgrade can realize one piece of run tasks
- 安全巡检的工作
- 阿里云易立:云原生如何破解企业降本提效难题?
- Hash table and full comments
- Qpushbutton- "function refinement"
- [paper reading | deep reading] anrl: attributed network representation learning via deep neural networks
- 本周 火火火火 的开源项目!
猜你喜欢
随机推荐
用全连接+softmax对图片的feature进行分类
Web3's need for law
Mmdetection3d loads millimeter wave radar data
牛客编程题--必刷101之双指针篇
Pioneer of Web3: virtual human
服装企业部署MES管理系统的五个原因
[paper reading | deep reading] rolne: improving the quality of network embedding with structural role proximity
普通测试年薪15w,测试开发年薪30w+,二者差距在哪?
Web3对法律的需求
How do I dump SoapClient requests for debugging- How to dump SoapClient request for debug?
[server data recovery] data recovery case of a Dell server crash caused by raid damage
【森城市】GIS数据漫谈(二)
Lombok同时使⽤@Data和@Builder 的坑
Douban average 9 x. Five God books in the distributed field!
ODBC database connection of MFC windows programming [147] (with source code)
数字滚动增加效果
[xlua notes] array of lua to array of C #
Qpushbutton- "function refinement"
PCL 常用拟合模型及使用方法
电气工程及其自动化