Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
s920243400
PaddleDetection
提交
da57ee26
P
PaddleDetection
项目概览
s920243400
/
PaddleDetection
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleDetection
通知
2
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
da57ee26
编写于
11月 03, 2020
作者:
G
Guanghua Yu
提交者:
GitHub
11月 03, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
enhance voc to coco docs (#1649)
* enhance voc to coco docs * fix voc annotation float type
上级
83b7a748
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
46 addition
and
17 deletion
+46
-17
docs/tutorials/Custom_DataSet.md
docs/tutorials/Custom_DataSet.md
+40
-11
tools/x2coco.py
tools/x2coco.py
+6
-6
未找到文件。
docs/tutorials/Custom_DataSet.md
浏览文件 @
da57ee26
...
...
@@ -29,6 +29,17 @@ python tools/x2coco.py \
--val_proportion
0.2
\
--test_proportion
0.0
```
**参数说明:**
-
`--dataset_type`
:需要转换的数据格式,目前支持:’voc‘、’labelme‘和’cityscape‘
-
`--json_input_dir`
:使用labelme标注的json文件所在文件夹
-
`--image_input_dir`
:图像文件所在文件夹
-
`--output_dir`
:转换后的COCO格式数据集存放位置
-
`--train_proportion`
:标注数据中用于train的比例
-
`--val_proportion`
:标注数据中用于validation的比例
-
`--test_proportion`
:标注数据中用于infer的比例
(2)voc数据转换为COCO格式:
```
bash
python tools/x2coco.py
\
...
...
@@ -41,17 +52,35 @@ python tools/x2coco.py \
**参数说明:**
-
`--dataset_type`
:需要转换的数据格式,目前支持:’voc‘、’labelme‘和’cityscape‘
-
`--json_input_dir`
:使用labelme标注的json文件所在文件夹
-
`--image_input_dir`
:图像文件所在文件夹
-
`--output_dir`
:转换后的COCO格式数据集存放位置
-
`--train_proportion`
:标注数据中用于train的比例
-
`--val_proportion`
:标注数据中用于validation的比例
-
`--test_proportion`
:标注数据中用于infer的比例
-
`--voc_anno_dir`
:VOC数据转换为COCO数据集时的voc数据集标注文件路径
-
`--voc_anno_list`
:VOC数据转换为COCO数据集时的标注列表文件,一般是
`ImageSets/Main`
下trainval.txt和test.txt文件
-
`--voc_label_list`
:VOC数据转换为COCO数据集时的类别列表文件,文件中每一行表示一种物体类别
-
`--voc_out_name`
:VOC数据转换为COCO数据集时的输出的COCO数据集格式json文件名
-
`--dataset_type`
:需要转换的数据格式,当前数据集是voc格式时,指定’voc‘即可。
-
`--voc_anno_dir`
:VOC数据转换为COCO数据集时的voc数据集标注文件路径。
例如:
```
├──Annotations/
├── 009881.xml
├── 009882.xml
├── 009886.xml
...
```
-
`--voc_anno_list`
:VOC数据转换为COCO数据集时的标注列表文件,文件中是文件名前缀列表,一般是
`ImageSets/Main`
下trainval.txt和test.txt文件。
例如:trainval.txt里的内容如下:
```
009881
009882
009886
...
```
-
`--voc_label_list`
:VOC数据转换为COCO数据集时的类别列表文件,文件中每一行表示一种物体类别。
例如:label_list.txt里的内容如下:
```
background
aeroplane
bicycle
...
```
-
`--voc_out_name`
:VOC数据转换为COCO数据集时的输出的COCO数据集格式json文件名。
### 方式二:将数据集转换为VOC格式
...
...
tools/x2coco.py
浏览文件 @
da57ee26
...
...
@@ -216,8 +216,8 @@ def voc_get_image_info(annotation_root, im_id):
img_name
=
os
.
path
.
basename
(
filename
)
size
=
annotation_root
.
find
(
'size'
)
width
=
in
t
(
size
.
findtext
(
'width'
))
height
=
in
t
(
size
.
findtext
(
'height'
))
width
=
floa
t
(
size
.
findtext
(
'width'
))
height
=
floa
t
(
size
.
findtext
(
'height'
))
image_info
=
{
'file_name'
:
filename
,
...
...
@@ -233,10 +233,10 @@ def voc_get_coco_annotation(obj, label2id):
assert
label
in
label2id
,
"label is not in label2id."
category_id
=
label2id
[
label
]
bndbox
=
obj
.
find
(
'bndbox'
)
xmin
=
in
t
(
bndbox
.
findtext
(
'xmin'
))
-
1
ymin
=
in
t
(
bndbox
.
findtext
(
'ymin'
))
-
1
xmax
=
in
t
(
bndbox
.
findtext
(
'xmax'
))
ymax
=
in
t
(
bndbox
.
findtext
(
'ymax'
))
xmin
=
floa
t
(
bndbox
.
findtext
(
'xmin'
))
-
1
ymin
=
floa
t
(
bndbox
.
findtext
(
'ymin'
))
-
1
xmax
=
floa
t
(
bndbox
.
findtext
(
'xmax'
))
ymax
=
floa
t
(
bndbox
.
findtext
(
'ymax'
))
assert
xmax
>
xmin
and
ymax
>
ymin
,
"Box size error."
o_width
=
xmax
-
xmin
o_height
=
ymax
-
ymin
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录