-
Notifications
You must be signed in to change notification settings - Fork 0
/
convert_waymo_to_yolo.py
executable file
·338 lines (307 loc) · 13 KB
/
convert_waymo_to_yolo.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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
import os
import json
import pathlib
import argparse
import datetime
import tensorflow as tf
from waymo_open_dataset import dataset_pb2 as open_dataset
tf.compat.v1.enable_eager_execution()
#from https://github.com/shinya7y/WaymoCOCO.git
class WaymoCOCOConverter():
def __init__(self,
image_dir,
image_prefix=None,
write_image=True,
add_waymo_info=False,
add_coco_info=True,
frame_index_ones_place=None):
"""
Parameters
----------
add_waymo_info : bool
include additional information out of original COCO format.
add_coco_info : bool
include information in original COCO format,
but out of Waymo Open Dataset.
if set to False, COCO compatibility breaks.
frame_index_ones_place : int
extract 1/10 size dataset based on ones place of frame index.
"""
self.image_dir = image_dir
self.image_prefix = image_prefix
self.write_image = write_image
self.add_waymo_info = add_waymo_info
self.add_coco_info = add_coco_info
if frame_index_ones_place is not None:
self.frame_index_ones_place = int(frame_index_ones_place)
assert 0 <= self.frame_index_ones_place < 10
else:
self.frame_index_ones_place = None
self.init_waymo_dataset_proto_info()
self.init_coco_format_info()
self.img_index = 0
self.annotation_index = 0
self.img_dicts = []
self.annotation_dicts = []
def init_waymo_dataset_proto_info(self):
# these lists should correspond to label.proto and dataset.proto in
# https://github.com/waymo-research/waymo-open-dataset/
self.waymo_class_mapping = [
'TYPE_UNKNOWN', 'TYPE_VEHICLE', 'TYPE_PEDESTRIAN', 'TYPE_SIGN',
'TYPE_CYCLIST'
]
self.waymo_camera_names = {
0: 'UNKNOWN',
1: 'FRONT',
2: 'FRONT_LEFT',
3: 'FRONT_RIGHT',
4: 'SIDE_LEFT',
5: 'SIDE_RIGHT',
}
def init_coco_format_info(self):
self.dataset_info = {
"year": 2020,
"version": "v1.2_20200409",
"description": "Waymo Open Dataset 2D Detection",
"contributor": "Waymo LLC",
"url": "https://waymo.com/open/",
"date_created": datetime.datetime.utcnow().isoformat(' '),
}
self.licenses = [{
"id": 1,
"name": "Waymo Dataset License Agreement for Non-Commercial Use",
"url": "https://waymo.com/open/terms/",
}]
# Waymo Open Dataset categories for "ALL_NS" setting
# (all Object Types except signs)
# Note that ids are different from those of waymo_class_mapping
self.target_categories = [
{
"id": 1,
"name": "TYPE_VEHICLE",
"supercategory": "vehicle",
},
{
"id": 2,
"name": "TYPE_PEDESTRIAN",
"supercategory": "person",
},
{
"id": 3,
"name": "TYPE_CYCLIST",
"supercategory": "bike_plus",
},
# {
# "id" : ,
# "name" : "TYPE_SIGN",
# "supercategory" : "outdoor",
# },
# {
# "id" : ,
# "name" : "TYPE_UNKNOWN",
# "supercategory" : "unknown",
# },
]
def process_sequences(self, tfrecord_paths):
if not isinstance(tfrecord_paths, (list, tuple)):
tfrecord_paths = [tfrecord_paths]
# loop for tfrecord sequences
for tfrecord_index, tfrecord_path in enumerate(sorted(tfrecord_paths)):
sequence_data = tf.data.TFRecordDataset(str(tfrecord_path),
compression_type='')
# loop for frames in each sequence
for frame_index, frame_data in enumerate(sequence_data):
if self.frame_index_ones_place is not None:
if frame_index % 10 != self.frame_index_ones_place:
continue
frame = open_dataset.Frame()
frame.ParseFromString(bytearray(frame_data.numpy()))
self.process_frame(frame, frame_index, tfrecord_index)
def process_frame(self, frame, frame_index, tfrecord_index):
print(f'frame: {frame_index}, {len(frame.images)} cameras')
# loop for camera images in each frame
for camera_image in frame.images:
self.process_img(camera_image, frame, frame_index, tfrecord_index)
for camera_label in frame.camera_labels:
# Ignore camera labels that do not correspond to this camera.
if camera_label.name != camera_image.name:
continue
self.add_coco_annotation_dict(camera_label)
# increment img_index after adding annotations
self.img_index += 1
def process_img(self, camera_image, frame, frame_index, tfrecord_index):
img_filename = f'{tfrecord_index:05d}_{frame_index:05d}_camera{camera_image.name}.jpg' # noqa
# img_filename = f'{frame.context.name}_{camera_image.name}_{frame.timestamp_micros}.jpg' # noqa
if self.image_prefix is not None:
img_filename = self.image_prefix + '_' + img_filename
img_path = os.path.join(self.image_dir, img_filename)
img = tf.image.decode_jpeg(camera_image.image).numpy()[:, :, ::-1]
img_height = img.shape[0]
img_width = img.shape[1]
if self.write_image:
with open(img_path, 'wb') as f:
f.write(bytearray(camera_image.image))
self.add_coco_img_dict(img_filename,
height=img_height,
width=img_width,
sequence_id=tfrecord_index,
frame_id=frame_index,
camera_id=int(camera_image.name),
frame=frame)
def add_coco_img_dict(self,
file_name,
height=None,
width=None,
sequence_id=None,
frame_id=None,
camera_id=None,
frame=None):
if height is None or width is None:
raise ValueError
img_dict = {
"id": self.img_index,
"width": width,
"height": height,
"file_name": file_name,
"license": 1,
}
if self.add_coco_info:
img_dict["flickr_url"] = ""
img_dict["coco_url"] = ""
img_dict["date_captured"] = ""
if self.add_waymo_info:
img_dict["context_name"] = frame.context.name
img_dict["timestamp_micros"] = frame.timestamp_micros
img_dict["camera_id"] = camera_id
img_dict["sequence_id"] = sequence_id
img_dict["frame_id"] = frame_id
img_dict["time_of_day"] = frame.context.stats.time_of_day
img_dict["location"] = frame.context.stats.location
img_dict["weather"] = frame.context.stats.weather
self.img_dicts.append(img_dict)
def add_coco_annotation_dict(self, camera_label):
annotation_dicts = []
for box_label in camera_label.labels:
category_name_to_id = {
category['name']: category['id']
for category in self.target_categories
}
category_name = self.waymo_class_mapping[box_label.type]
category_id = category_name_to_id[category_name]
width = box_label.box.length # box.length: dim x
height = box_label.box.width # box.width: dim y
x1 = box_label.box.center_x - width / 2
y1 = box_label.box.center_y - height / 2
annotation_dict = {
"id": self.annotation_index,
"image_id": self.img_index,
"category_id": category_id,
"segmentation": None,
"area": width * height,
"bbox": [x1, y1, width, height],
"iscrowd": 0,
}
if self.add_waymo_info:
annotation_dict["track_id"] = box_label.id
annotation_dict["det_difficult"] = \
box_label.detection_difficulty_level
annotation_dict["track_difficult"] = \
box_label.tracking_difficulty_level
annotation_dicts.append(annotation_dict)
self.annotation_index += 1
self.annotation_dicts.extend(annotation_dicts)
def write_coco(self, label_path, json_indent=None):
output_dict = {
"info": self.dataset_info,
"licenses": self.licenses,
"categories": self.target_categories,
"images": self.img_dicts,
}
if self.annotation_dicts:
output_dict["annotations"] = self.annotation_dicts
if self.add_waymo_info:
output_dict["camera_names"] = self.waymo_camera_names
with open(label_path, mode='w') as f:
# dump with a trick for rounding float
json.dump(json.loads(json.dumps(output_dict),
parse_float=lambda x: round(float(x), 6)),
f,
indent=json_indent,
sort_keys=False)
def convert_bbox(size,box):
dw = 1./size[0]
dh = 1./size[1]
x = (box[0]+box[2]//2)*dw
y = (box[1]+box[3]//2)*dh
w = box[2]*dw
h = box[3]*dh
return (x,y,w,h)
def main():
parser = argparse.ArgumentParser()
parser.add_argument('--tfrecord_dir', required=True, type=str)
parser.add_argument('--work_dir', default='.', type=str)
parser.add_argument('--version_name', required=True, type=str)
parser.add_argument('--image_filename_prefix', default=None, type=str)
parser.add_argument('--skip_write_image', action='store_true')
parser.add_argument('--ann_dirname', default='annotations', type=str)
parser.add_argument('--ann_filename', required=True, type=str)
parser.add_argument('--json_indent', default=None, type=int)
parser.add_argument('--add_waymo_info', action='store_true')
parser.add_argument(
'--frame_index_ones_place',
default=None,
type=int,
help='extract 1/10 size dataset based on ones place of frame index.')
parser.add_argument('--sequence_limit',
default=None,
type=int,
help='limit number of sequences. useful for debug.')
args = parser.parse_args()
image_dir = os.path.join(args.work_dir,'images', args.version_name)
ann_dir = os.path.join(args.work_dir, args.ann_dirname)
label_dir = os.path.join(args.work_dir,'labels', args.version_name)
os.makedirs(image_dir, exist_ok=True)
os.makedirs(ann_dir, exist_ok=True)
os.makedirs(label_dir, exist_ok=True)
ann_path = os.path.join(ann_dir, args.ann_filename)
tfrecord_list = list(
sorted(pathlib.Path(args.tfrecord_dir).glob('*.tfrecord')))
if args.sequence_limit is not None:
tfrecord_list = tfrecord_list[:args.sequence_limit]
waymo_converter = WaymoCOCOConverter(
image_dir,
image_prefix=args.image_filename_prefix,
write_image=(not args.skip_write_image),
add_waymo_info=args.add_waymo_info,
frame_index_ones_place=args.frame_index_ones_place)
print('converting to coco......')
waymo_converter.process_sequences(tfrecord_list)
waymo_converter.write_coco(ann_path, json_indent=args.json_indent)
print('converting to darknet.....')
#From COCO we need to convert to darknet format
with open(ann_path,'r') as f:
data = json.load(f)
classes =['TYPE_VEHICLE', 'TYPE_PEDESTRIAN', 'TYPE_CYCLIST']
for item in data['images']:
image_id = item['id']
file_name = item['file_name']
width = item['width']
height = item['height']
value = filter(lambda item1: item1['image_id'] == image_id,data['annotations'])
outfile = open(os.path.join(label_dir,'%s.txt'%(file_name[:-4])), 'a+')
for item2 in value:
category_id = item2['category_id']
value1 = filter(lambda item3: item3['id'] == category_id,data['categories'])
name = value1.__next__()['name']
class_id = classes.index(name)
box = item2['bbox']
bb = convert_bbox((width,height),box)
outfile.write(str(class_id)+" "+" ".join([str(a) for a in bb]) + '\n')
outfile.close()
image_list = os.listdir(image_dir)
with open(os.path.join(args.work_dir, args.version_name+'.txt'), 'w') as f:
for file in image_list:
file = os.path.join('./images', args.version_name,file)+'\n'
f.write(file)
if __name__ == "__main__":
main()