forked from facebookresearch/Detectron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dataset_catalog.py
240 lines (218 loc) · 7.22 KB
/
dataset_catalog.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
# Copyright (c) 2017-present, Facebook, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
##############################################################################
"""Collection of available datasets."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
import os
# Path to data dir
_DATA_DIR = os.path.join(os.path.dirname(__file__), 'data')
# Required dataset entry keys
_IM_DIR = 'image_directory'
_ANN_FN = 'annotation_file'
# Optional dataset entry keys
_IM_PREFIX = 'image_prefix'
_DEVKIT_DIR = 'devkit_directory'
_RAW_DIR = 'raw_dir'
# Available datasets
_DATASETS = {
'cityscapes_fine_instanceonly_seg_train': {
_IM_DIR:
_DATA_DIR + '/cityscapes/images',
_ANN_FN:
_DATA_DIR + '/cityscapes/annotations/instancesonly_gtFine_train.json',
_RAW_DIR:
_DATA_DIR + '/cityscapes/raw'
},
'cityscapes_fine_instanceonly_seg_val': {
_IM_DIR:
_DATA_DIR + '/cityscapes/images',
# use filtered validation as there is an issue converting contours
_ANN_FN:
_DATA_DIR + '/cityscapes/annotations/instancesonly_filtered_gtFine_val.json',
_RAW_DIR:
_DATA_DIR + '/cityscapes/raw'
},
'cityscapes_fine_instanceonly_seg_test': {
_IM_DIR:
_DATA_DIR + '/cityscapes/images',
_ANN_FN:
_DATA_DIR + '/cityscapes/annotations/instancesonly_gtFine_test.json',
_RAW_DIR:
_DATA_DIR + '/cityscapes/raw'
},
'coco_2014_train': {
_IM_DIR:
_DATA_DIR + '/coco/coco_train2014',
_ANN_FN:
_DATA_DIR + '/coco/annotations/instances_train2014.json'
},
'coco_2014_val': {
_IM_DIR:
_DATA_DIR + '/coco/coco_val2014',
_ANN_FN:
_DATA_DIR + '/coco/annotations/instances_val2014.json'
},
'coco_2014_minival': {
_IM_DIR:
_DATA_DIR + '/coco/coco_val2014',
_ANN_FN:
_DATA_DIR + '/coco/annotations/instances_minival2014.json'
},
'coco_2014_valminusminival': {
_IM_DIR:
_DATA_DIR + '/coco/coco_val2014',
_ANN_FN:
_DATA_DIR + '/coco/annotations/instances_valminusminival2014.json'
},
'coco_2015_test': {
_IM_DIR:
_DATA_DIR + '/coco/coco_test2015',
_ANN_FN:
_DATA_DIR + '/coco/annotations/image_info_test2015.json'
},
'coco_2015_test-dev': {
_IM_DIR:
_DATA_DIR + '/coco/coco_test2015',
_ANN_FN:
_DATA_DIR + '/coco/annotations/image_info_test-dev2015.json'
},
'coco_2017_test': { # 2017 test uses 2015 test images
_IM_DIR:
_DATA_DIR + '/coco/coco_test2015',
_ANN_FN:
_DATA_DIR + '/coco/annotations/image_info_test2017.json',
_IM_PREFIX:
'COCO_test2015_'
},
'coco_2017_test-dev': { # 2017 test-dev uses 2015 test images
_IM_DIR:
_DATA_DIR + '/coco/coco_test2015',
_ANN_FN:
_DATA_DIR + '/coco/annotations/image_info_test-dev2017.json',
_IM_PREFIX:
'COCO_test2015_'
},
'coco_stuff_train': {
_IM_DIR:
_DATA_DIR + '/coco/coco_train2014',
_ANN_FN:
_DATA_DIR + '/coco/annotations/coco_stuff_train.json'
},
'coco_stuff_val': {
_IM_DIR:
_DATA_DIR + '/coco/coco_val2014',
_ANN_FN:
_DATA_DIR + '/coco/annotations/coco_stuff_val.json'
},
'keypoints_coco_2014_train': {
_IM_DIR:
_DATA_DIR + '/coco/coco_train2014',
_ANN_FN:
_DATA_DIR + '/coco/annotations/person_keypoints_train2014.json'
},
'keypoints_coco_2014_val': {
_IM_DIR:
_DATA_DIR + '/coco/coco_val2014',
_ANN_FN:
_DATA_DIR + '/coco/annotations/person_keypoints_val2014.json'
},
'keypoints_coco_2014_minival': {
_IM_DIR:
_DATA_DIR + '/coco/coco_val2014',
_ANN_FN:
_DATA_DIR + '/coco/annotations/person_keypoints_minival2014.json'
},
'keypoints_coco_2014_valminusminival': {
_IM_DIR:
_DATA_DIR + '/coco/coco_val2014',
_ANN_FN:
_DATA_DIR + '/coco/annotations/person_keypoints_valminusminival2014.json'
},
'keypoints_coco_2015_test': {
_IM_DIR:
_DATA_DIR + '/coco/coco_test2015',
_ANN_FN:
_DATA_DIR + '/coco/annotations/image_info_test2015.json'
},
'keypoints_coco_2015_test-dev': {
_IM_DIR:
_DATA_DIR + '/coco/coco_test2015',
_ANN_FN:
_DATA_DIR + '/coco/annotations/image_info_test-dev2015.json'
},
'voc_2007_train': {
_IM_DIR:
_DATA_DIR + '/VOC2007/JPEGImages',
_ANN_FN:
_DATA_DIR + '/VOC2007/annotations/voc_2007_train.json',
_DEVKIT_DIR:
_DATA_DIR + '/VOC2007/VOCdevkit2007'
},
'voc_2007_val': {
_IM_DIR:
_DATA_DIR + '/VOC2007/JPEGImages',
_ANN_FN:
_DATA_DIR + '/VOC2007/annotations/voc_2007_val.json',
_DEVKIT_DIR:
_DATA_DIR + '/VOC2007/VOCdevkit2007'
},
'voc_2007_test': {
_IM_DIR:
_DATA_DIR + '/VOC2007/JPEGImages',
_ANN_FN:
_DATA_DIR + '/VOC2007/annotations/voc_2007_test.json',
_DEVKIT_DIR:
_DATA_DIR + '/VOC2007/VOCdevkit2007'
},
'voc_2012_train': {
_IM_DIR:
_DATA_DIR + '/VOC2012/JPEGImages',
_ANN_FN:
_DATA_DIR + '/VOC2012/annotations/voc_2012_train.json',
_DEVKIT_DIR:
_DATA_DIR + '/VOC2012/VOCdevkit2012'
},
'voc_2012_val': {
_IM_DIR:
_DATA_DIR + '/VOC2012/JPEGImages',
_ANN_FN:
_DATA_DIR + '/VOC2012/annotations/voc_2012_val.json',
_DEVKIT_DIR:
_DATA_DIR + '/VOC2012/VOCdevkit2012'
}
}
def datasets():
"""Retrieve the list of available dataset names."""
return _DATASETS.keys()
def contains(name):
"""Determine if the dataset is in the catalog."""
return name in _DATASETS.keys()
def get_im_dir(name):
"""Retrieve the image directory for the dataset."""
return _DATASETS[name][_IM_DIR]
def get_ann_fn(name):
"""Retrieve the annotation file for the dataset."""
return _DATASETS[name][_ANN_FN]
def get_im_prefix(name):
"""Retrieve the image prefix for the dataset."""
return _DATASETS[name][_IM_PREFIX] if _IM_PREFIX in _DATASETS[name] else ''
def get_devkit_dir(name):
"""Retrieve the devkit dir for the dataset."""
return _DATASETS[name][_DEVKIT_DIR]
def get_raw_dir(name):
"""Retrieve the raw dir for the dataset."""
return _DATASETS[name][_RAW_DIR]