Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Y
yolov5
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Administrator
yolov5
Commits
5189b3ad
提交
5189b3ad
authored
5月 04, 2021
作者:
Glenn Jocher
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Objects365 Update
上级
b292837e
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
46 行增加
和
48 行删除
+46
-48
objects365.yaml
data/objects365.yaml
+40
-0
get_objects365.py
data/scripts/get_objects365.py
+0
-45
general.py
utils/general.py
+6
-3
没有找到文件。
data/objects365.yaml
浏览文件 @
5189b3ad
...
...
@@ -55,3 +55,43 @@ names: [ 'Person', 'Sneakers', 'Chair', 'Other Shoes', 'Hat', 'Car', 'Lamp', 'Gl
'
Scallop'
,
'
Noddles'
,
'
Comb'
,
'
Dumpling'
,
'
Oyster'
,
'
Table
Tennis
paddle'
,
'
Cosmetics
Brush/Eyeliner
Pencil'
,
'
Chainsaw'
,
'
Eraser'
,
'
Lobster'
,
'
Durian'
,
'
Okra'
,
'
Lipstick'
,
'
Cosmetics
Mirror'
,
'
Curling'
,
'
Table
Tennis'
]
# download command/URL (optional) --------------------------------------------------------------------------------------
download
:
|
from pycocotools.coco import COCO
from tqdm import tqdm
from utils.general import download, Path
# Make Directories
dir = Path('../datasets/objects365') # dataset directory
for p in 'images', 'labels':
(dir / p).mkdir(parents=True, exist_ok=True)
for q in 'train', 'val':
(dir / p / q).mkdir(parents=True, exist_ok=True)
# Download
url = "https://dorc.ks3-cn-beijing.ksyun.com/data-set/2020Objects365%E6%95%B0%E6%8D%AE%E9%9B%86/train/"
download([url + 'zhiyuan_objv2_train.tar.gz'], dir=dir) # annotations json
download([url + f for f in [f'patch{i}.tar.gz' for i in range(51)]], dir=dir / 'images' / 'train',
curl=True, delete=False, threads=8)
# Labels
coco = COCO(dir / 'zhiyuan_objv2_train.json')
names = [x["name"] for x in coco.loadCats(coco.getCatIds())]
for cid, cat in enumerate(names):
catIds = coco.getCatIds(catNms=[cat])
imgIds = coco.getImgIds(catIds=catIds)
for im in tqdm(coco.loadImgs(imgIds), desc=f'Class {cid}/{len(names)} {cat}'):
width, height = im["width"], im["height"]
path = Path(im["file_name"]) # image filename
try:
with open(dir / 'labels' / 'train' / path.with_suffix('.txt').name, 'a') as file:
annIds = coco.getAnnIds(imgIds=im["id"], catIds=catIds, iscrowd=None)
for a in coco.loadAnns(annIds):
x, y, w, h = a['bbox'] # bounding box in xywh (xy top-left corner)
x, y = x + w / 2, y + h / 2 # xy to center
file.write(f"{cid} {x / width:.5f} {y / height:.5f} {w / width:.5f} {h / height:.5f}\n")
except Exception as e:
print(e)
data/scripts/get_objects365.py
deleted
100644 → 0
浏览文件 @
b292837e
# Objects365 https://www.objects365.org labels JSON to YOLO script
# 1. Download Object 365 from the Object 365 website And unpack all images in datasets/object365/images
# 2. Place this file and zhiyuan_objv2_train.json file in datasets/objects365
# 3. Execute this file from datasets/object365 path
# /datasets
# /objects365
# /images
# /labels
from
pycocotools.coco
import
COCO
from
utils.general
import
download
,
Path
# Make Directories
dir
=
Path
(
'../datasets/objects365'
)
# dataset directory
for
p
in
'images'
,
'labels'
:
(
dir
/
p
)
.
mkdir
(
parents
=
True
,
exist_ok
=
True
)
for
q
in
'train'
,
'val'
:
(
dir
/
p
/
q
)
.
mkdir
(
parents
=
True
,
exist_ok
=
True
)
# Download
url
=
"https://dorc.ks3-cn-beijing.ksyun.com/data-set/2020Objects365
%
E6
%95%
B0
%
E6
%8
D
%
AE
%
E9
%9
B
%86
/train/"
download
([
url
+
'zhiyuan_objv2_train.tar.gz'
],
dir
=
dir
)
# annotations json
download
([
url
+
f
for
f
in
[
f
'patch{i}.tar.gz'
for
i
in
range
(
51
)]],
dir
=
dir
/
'images'
/
'train'
,
curl
=
True
,
threads
=
8
)
# Labels
coco
=
COCO
(
dir
/
'zhiyuan_objv2_train.json'
)
names
=
[
x
[
"name"
]
for
x
in
coco
.
loadCats
(
coco
.
getCatIds
())]
for
categoryId
,
cat
in
enumerate
(
names
):
catIds
=
coco
.
getCatIds
(
catNms
=
[
cat
])
imgIds
=
coco
.
getImgIds
(
catIds
=
catIds
)
for
im
in
coco
.
loadImgs
(
imgIds
):
width
,
height
=
im
[
"width"
],
im
[
"height"
]
path
=
Path
(
im
[
"file_name"
])
# image filename
try
:
with
open
(
dir
/
'labels'
/
'train'
/
path
.
with_suffix
(
'.txt'
)
.
name
,
'a'
)
as
file
:
annIds
=
coco
.
getAnnIds
(
imgIds
=
im
[
"id"
],
catIds
=
catIds
,
iscrowd
=
None
)
for
a
in
coco
.
loadAnns
(
annIds
):
x
,
y
,
w
,
h
=
a
[
'bbox'
]
# bounding box in xywh (xy top-left corner)
x
,
y
=
x
+
w
/
2
,
y
+
h
/
2
# xy to center
file
.
write
(
f
"{categoryId} {x / width:.5f} {y / height:.5f} {w / width:.5f} {h / height:.5f}
\n
"
)
except
Exception
as
e
:
print
(
e
)
utils/general.py
浏览文件 @
5189b3ad
...
...
@@ -193,7 +193,7 @@ def check_dataset(dict):
raise
Exception
(
'Dataset not found.'
)
def
download
(
url
,
dir
=
'.'
,
unzip
=
True
,
curl
=
False
,
threads
=
1
):
def
download
(
url
,
dir
=
'.'
,
unzip
=
True
,
delete
=
True
,
curl
=
False
,
threads
=
1
):
# Multi-threaded file download and unzip function
def
download_one
(
url
,
dir
):
# Download 1 file
...
...
@@ -207,9 +207,12 @@ def download(url, dir='.', unzip=True, curl=False, threads=1):
if
unzip
and
f
.
suffix
in
(
'.zip'
,
'.gz'
):
print
(
f
'Unzipping {f}...'
)
if
f
.
suffix
==
'.zip'
:
os
.
system
(
f
'unzip -qo {f} -d {dir} && rm {f}'
)
# unzip -quiet -overwrite
s
=
f
'unzip -qo {f} -d {dir} && rm {f}'
# unzip -quiet -overwrite
elif
f
.
suffix
==
'.gz'
:
os
.
system
(
f
'tar xfz {f} --directory {f.parent} && rm {f}'
)
# unzip
s
=
f
'tar xfz {f} --directory {f.parent}'
# unzip
if
delete
:
# delete zip file after unzip
s
+=
f
' && rm {f}'
os
.
system
(
s
)
dir
=
Path
(
dir
)
dir
.
mkdir
(
parents
=
True
,
exist_ok
=
True
)
# make directory
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论