-
Notifications
You must be signed in to change notification settings - Fork 41
/
label.py
405 lines (343 loc) · 20.8 KB
/
label.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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
import argparse
from collections import OrderedDict
import functools
import random
import cv2
import numpy as np
from autowebcompat import utils
labels_directory = 'label_persons/'
parser = argparse.ArgumentParser()
parser.add_argument('file_name', action='store', help='Filename to open and save your labels')
parser.add_argument('--verify', dest='verify', default=False, action='store_true', help='To verify and edit previous labels')
args = parser.parse_args()
labels = utils.read_labels(labels_directory + args.file_name + '.csv')
bounding_boxes = utils.read_bounding_boxes(labels_directory + args.file_name + '_bounding_box.json')
if args.verify:
images_to_show = [i for i in utils.get_images() if i in labels]
else:
all_labels = utils.read_labels()
images_to_show = [i for i in utils.get_images() if i not in labels]
images_in_all_labels = [i for i in images_to_show if i in all_labels]
images_not_in_all_labels = [i for i in images_to_show if i not in all_labels]
random.shuffle(images_not_in_all_labels)
random.shuffle(images_in_all_labels)
images_to_show = images_not_in_all_labels + images_in_all_labels
image_index = 0
drawing = False
shifting = False
changing_shape = False
box_to_change = {}
all_boxes = {}
key_map = {'Escape': 27, 'r': 114, 'Enter': 13, 'Space': 32, 'y': 121, 'left_a': 97, 'right_d': 100}
COLOR_N = (128, 0, 128) # PURPLE
COLOR_D = (0, 255, 255) # YELLOW
COLOR_PLUS = (255, 0, 0) # BLUE
COLOR_TOGGLE_ND = (0, 0, 255) # RED
COLOR_CHANGE_SHAPE = (0, 0, 255) # RED
COLOR_CROSS = (0, 0, 255) # RED
cv2.namedWindow('firefox', cv2.WINDOW_NORMAL)
cv2.namedWindow('chrome', cv2.WINDOW_NORMAL)
cv2.namedWindow('firefox_chrome_overlay', cv2.WINDOW_NORMAL)
def reset_bounding_boxes(drawing_area_shape):
return np.zeros(drawing_area_shape, np.uint8)
def top_left_bottom_right_box(start_x, start_y, end_x, end_y):
box_start_x, box_start_y = start_x, start_y
box_end_x, box_end_y = end_x, end_y
box_start_x, box_end_x = min(box_start_x, box_end_x), max(box_start_x, box_end_x)
box_start_y, box_end_y = min(box_start_y, box_end_y), max(box_start_y, box_end_y)
return box_start_x, box_start_y, box_end_x, box_end_y
def fit_bounding_box(start_x, start_y, end_x, end_y, x_max, y_max):
start_x = max(0, start_x)
start_y = max(0, start_y)
end_x = min(x_max, end_x)
end_y = min(y_max, end_y)
return [start_x, start_y, end_x, end_y]
def check_cross_click(start_x, start_y, box):
if start_x >= box[2] - 15 and start_x <= box[2] and start_y >= box[1] and start_y <= box[1] + 15:
return True
return False
def check_toggle_click(start_x, start_y, box):
if start_x >= box[0] and start_x <= box[0] + 12 and start_y >= box[1] and start_y <= box[1] + 12:
return True
return False
def check_plus_click(start_x, start_y, box):
center_x = (box[0] + box[2]) // 2
center_y = (box[1] + box[3]) // 2
if start_x >= center_x - 10 and start_x <= center_x + 10 and start_y >= center_y - 10 and start_y <= center_y + 10:
return True
return False
def check_arrow_click(start_x, start_y, box):
if start_x >= box[2] - 10 and start_x <= box[2] and start_y >= box[3] - 10 and start_y <= box[3]:
return True
return False
def shift_bounding_box(box, start_x, start_y, end_x, end_y):
box_start_x = box[0] + (end_x - start_x)
box_start_y = box[1] + (end_y - start_y)
box_end_x = box[2] + (end_x - start_x)
box_end_y = box[3] + (end_y - start_y)
(box_start_x, box_start_y, box_end_x, box_end_y) = top_left_bottom_right_box(box_start_x, box_start_y, box_end_x, box_end_y)
return (box_start_x, box_start_y, box_end_x, box_end_y)
def change_bounding_box(box, start_x, start_y, end_x, end_y):
(box_start_x, box_start_y, box_end_x, box_end_y) = top_left_bottom_right_box(box[0], box[1], end_x, end_y)
return (box_start_x, box_start_y, box_end_x, box_end_y)
def create_bounding_box(drawing_area, start_x, start_y, end_x, end_y, color):
cv2.rectangle(drawing_area, (start_x, start_y), (end_x, end_y), color, -1)
def create_cross(drawing_area, start_x, start_y, end_x, end_y):
cv2.line(drawing_area, (end_x - 2, start_y + 2), (end_x - 12, start_y + 12), COLOR_CROSS, 2)
cv2.line(drawing_area, (end_x - 12, start_y + 2), (end_x - 2, start_y + 12), COLOR_CROSS, 2)
def create_plus(drawing_area, start_x, start_y, end_x, end_y):
center_x = (start_x + end_x) // 2
center_y = (start_y + end_y) // 2
cv2.arrowedLine(drawing_area, (center_x, center_y - 10), (center_x, center_y + 10), COLOR_PLUS, 2, tipLength=0.2)
cv2.arrowedLine(drawing_area, (center_x - 10, center_y), (center_x + 10, center_y), COLOR_PLUS, 2, tipLength=0.2)
cv2.arrowedLine(drawing_area, (center_x, center_y + 10), (center_x, center_y - 10), COLOR_PLUS, 2, tipLength=0.2)
cv2.arrowedLine(drawing_area, (center_x + 10, center_y), (center_x - 10, center_y), COLOR_PLUS, 2, tipLength=0.2)
def create_toggle_nd(drawing_area, start_x, start_y, end_x, end_y):
cv2.line(drawing_area, (start_x + 2, start_y + 2), (start_x + 12, start_y + 2), COLOR_TOGGLE_ND, 2)
cv2.line(drawing_area, (start_x + 7, start_y + 2), (start_x + 7, start_y + 12), COLOR_TOGGLE_ND, 2)
def create_change_shape(drawing_area, start_x, start_y, end_x, end_y):
cv2.arrowedLine(drawing_area, (end_x - 12, end_y - 12), (end_x - 2, end_y - 2), COLOR_CHANGE_SHAPE, 2, tipLength=0.3)
cv2.arrowedLine(drawing_area, (end_x - 2, end_y - 2), (end_x - 12, end_y - 12), COLOR_CHANGE_SHAPE, 2, tipLength=0.3)
def draw_bounding_boxes_init(param):
[main_drawing_area, secondary_drawing_area, boxes] = param
color = {'d': COLOR_D, 'n': COLOR_N}
for boxes_type, boxes_values in all_boxes.items():
for box in boxes_values:
if box in boxes[boxes_type]:
box_main_drawing_area = main_drawing_area
box_secondary_drawing_area = secondary_drawing_area
else:
box_main_drawing_area = secondary_drawing_area
box_secondary_drawing_area = main_drawing_area
create_bounding_box(box_main_drawing_area, box[0], box[1], box[2], box[3], color[boxes_type])
create_cross(box_main_drawing_area, box[0], box[1], box[2], box[3])
create_plus(box_main_drawing_area, box[0], box[1], box[2], box[3])
create_change_shape(box_main_drawing_area, box[0], box[1], box[2], box[3])
create_toggle_nd(box_main_drawing_area, box[0], box[1], box[2], box[3])
create_bounding_box(box_secondary_drawing_area, box[0], box[1], box[2], box[3], color[boxes_type])
def draw_bounding_boxes(event, mouse_x, mouse_y, flags, param):
global start_x, start_y, drawing, end_x, end_y, shifting, box_to_change, changing_shape
[main_drawing_area, secondary_drawing_area, boxes] = param
color = {'d': COLOR_D, 'n': COLOR_N}
for boxes_type, boxes_values in all_boxes.items():
for box in boxes_values:
if box in boxes[boxes_type]:
box_main_drawing_area = main_drawing_area
box_secondary_drawing_area = secondary_drawing_area
else:
box_main_drawing_area = secondary_drawing_area
box_secondary_drawing_area = main_drawing_area
create_bounding_box(box_main_drawing_area, box[0], box[1], box[2], box[3], color[boxes_type])
create_cross(box_main_drawing_area, box[0], box[1], box[2], box[3])
create_plus(box_main_drawing_area, box[0], box[1], box[2], box[3])
create_change_shape(box_main_drawing_area, box[0], box[1], box[2], box[3])
create_toggle_nd(box_main_drawing_area, box[0], box[1], box[2], box[3])
create_bounding_box(box_secondary_drawing_area, box[0], box[1], box[2], box[3], color[boxes_type])
if event == cv2.EVENT_LBUTTONDOWN:
start_x, start_y = mouse_x, mouse_y
end_x, end_y = mouse_x, mouse_y
for boxes_type, boxes_values in boxes.items():
for box in boxes_values:
if check_cross_click(start_x, start_y, box):
main_drawing_area[box[1]: box[3] + 1, box[0]: box[2] + 1, 0:3] = 0
secondary_drawing_area[box[1]: box[3] + 1, box[0]: box[2] + 1, 0:3] = 0
boxes_values.remove(box)
return
elif check_plus_click(start_x, start_y, box):
main_drawing_area[box[1]: box[3] + 1, box[0]: box[2] + 1, 0:3] = 0
secondary_drawing_area[box[1]: box[3] + 1, box[0]: box[2] + 1, 0:3] = 0
shifting = True
box_to_change['box'] = box[:]
box_to_change['color'] = boxes_type
boxes_values.remove(box)
return
elif check_arrow_click(start_x, start_y, box):
main_drawing_area[box[1]: box[3] + 1, box[0]: box[2] + 1, 0:3] = 0
secondary_drawing_area[box[1]: box[3] + 1, box[0]: box[2] + 1, 0:3] = 0
changing_shape = True
box_to_change['box'] = box[:]
box_to_change['color'] = boxes_type
boxes_values.remove(box)
return
elif check_toggle_click(start_x, start_y, box):
if box in boxes['n']:
boxes['n'].remove(box)
boxes['d'].append(box)
else:
boxes['d'].remove(box)
boxes['n'].append(box)
return
drawing = True
elif event == cv2.EVENT_MOUSEMOVE:
if drawing is True:
(box_start_x, box_start_y, box_end_x, box_end_y) = top_left_bottom_right_box(start_x, start_y, end_x, end_y)
main_drawing_area[box_start_y:box_end_y + 1, box_start_x:box_end_x + 1, 0:3] = 0
secondary_drawing_area[box_start_y:box_end_y + 1, box_start_x:box_end_x + 1, 0:3] = 0
end_x, end_y = mouse_x, mouse_y
(box_start_x, box_start_y, box_end_x, box_end_y) = fit_bounding_box(start_x, start_y, end_x, end_y, main_drawing_area.shape[1], main_drawing_area.shape[0])
create_bounding_box(main_drawing_area, box_start_x, box_start_y, box_end_x, box_end_y, color['n'])
create_bounding_box(secondary_drawing_area, box_start_x, box_start_y, box_end_x, box_end_y, color['n'])
elif shifting is True:
(box_start_x, box_start_y, box_end_x, box_end_y) = shift_bounding_box(box_to_change['box'], start_x, start_y, end_x, end_y)
(box_start_x, box_start_y, box_end_x, box_end_y) = fit_bounding_box(box_start_x, box_start_y, box_end_x, box_end_y, main_drawing_area.shape[1], main_drawing_area.shape[0])
main_drawing_area[box_start_y:box_end_y + 1, box_start_x:box_end_x + 1, 0:3] = 0
secondary_drawing_area[box_start_y:box_end_y + 1, box_start_x:box_end_x + 1, 0:3] = 0
end_x, end_y = mouse_x, mouse_y
(box_start_x, box_start_y, box_end_x, box_end_y) = shift_bounding_box(box_to_change['box'], start_x, start_y, end_x, end_y)
(box_start_x, box_start_y, box_end_x, box_end_y) = fit_bounding_box(box_start_x, box_start_y, box_end_x, box_end_y, main_drawing_area.shape[1], main_drawing_area.shape[0])
create_bounding_box(main_drawing_area, box_start_x, box_start_y, box_end_x, box_end_y, color[box_to_change['color']])
create_bounding_box(secondary_drawing_area, box_start_x, box_start_y, box_end_x, box_end_y, color[box_to_change['color']])
elif changing_shape is True:
(box_start_x, box_start_y, box_end_x, box_end_y) = change_bounding_box(box_to_change['box'], start_x, start_y, end_x, end_y)
(box_start_x, box_start_y, box_end_x, box_end_y) = fit_bounding_box(box_start_x, box_start_y, box_end_x, box_end_y, main_drawing_area.shape[1], main_drawing_area.shape[0])
main_drawing_area[box_start_y:box_end_y + 1, box_start_x:box_end_x + 1, 0:3] = 0
secondary_drawing_area[box_start_y:box_end_y + 1, box_start_x:box_end_x + 1, 0:3] = 0
end_x, end_y = mouse_x, mouse_y
(box_start_x, box_start_y, box_end_x, box_end_y) = change_bounding_box(box_to_change['box'], start_x, start_y, end_x, end_y)
(box_start_x, box_start_y, box_end_x, box_end_y) = fit_bounding_box(box_start_x, box_start_y, box_end_x, box_end_y, main_drawing_area.shape[1], main_drawing_area.shape[0])
create_bounding_box(main_drawing_area, box_start_x, box_start_y, box_end_x, box_end_y, color[box_to_change['color']])
create_bounding_box(secondary_drawing_area, box_start_x, box_start_y, box_end_x, box_end_y, color[box_to_change['color']])
elif event == cv2.EVENT_LBUTTONUP:
if shifting is True:
shifting = False
(box_start_x, box_start_y, box_end_x, box_end_y) = shift_bounding_box(box_to_change['box'], start_x, start_y, end_x, end_y)
(box_start_x, box_start_y, box_end_x, box_end_y) = fit_bounding_box(box_start_x, box_start_y, box_end_x, box_end_y, main_drawing_area.shape[1], main_drawing_area.shape[0])
boxes[box_to_change['color']].append([box_start_x, box_start_y, box_end_x, box_end_y])
elif drawing is True:
drawing = False
(start_x, start_y, end_x, end_y) = top_left_bottom_right_box(start_x, start_y, end_x, end_y)
(box_start_x, box_start_y, box_end_x, box_end_y) = fit_bounding_box(start_x, start_y, end_x, end_y, main_drawing_area.shape[1], main_drawing_area.shape[0])
boxes['n'].append([box_start_x, box_start_y, box_end_x, box_end_y])
elif changing_shape is True:
changing_shape = False
(box_start_x, box_start_y, box_end_x, box_end_y) = change_bounding_box(box_to_change['box'], start_x, start_y, end_x, end_y)
(box_start_x, box_start_y, box_end_x, box_end_y) = fit_bounding_box(box_start_x, box_start_y, box_end_x, box_end_y, main_drawing_area.shape[1], main_drawing_area.shape[0])
boxes[box_to_change['color']].append([box_start_x, box_start_y, box_end_x, box_end_y])
# The images are not the same and you want to mark the bounding box.
def get_new_image():
global all_boxes, image_index
image_index = max(0, image_index)
image_index = min(image_index, len(images_to_show) - 1)
current_image = images_to_show[image_index]
print('Reading %s' % current_image)
firefox_screenshot = cv2.imread('data/%s_firefox.png' % current_image)
chrome_screenshot = cv2.imread('data/%s_chrome.png' % current_image)
if firefox_screenshot.shape != chrome_screenshot.shape:
del images_to_show[image_index]
return 0
cv2.resizeWindow('chrome', chrome_screenshot.shape[1], chrome_screenshot.shape[0])
cv2.resizeWindow('firefox', firefox_screenshot.shape[1], firefox_screenshot.shape[0])
cv2.resizeWindow('firefox_chrome_overlay', chrome_screenshot.shape[1], chrome_screenshot.shape[0])
cv2.moveWindow('firefox', 20, 0)
cv2.moveWindow('chrome', 20 + firefox_screenshot.shape[1], 0)
cv2.moveWindow('firefox_chrome_overlay', 20 + firefox_screenshot.shape[1] + chrome_screenshot.shape[1], 0)
drawing_area_firefox = reset_bounding_boxes(firefox_screenshot.shape)
drawing_area_chrome = reset_bounding_boxes(chrome_screenshot.shape)
visibility = 1
if current_image + '_firefox' in bounding_boxes.keys():
all_boxes = {'n': [], 'd': []}
boxes_firefox = bounding_boxes[current_image + '_firefox']
boxes_chrome = bounding_boxes[current_image + '_chrome']
all_boxes['n'] = boxes_firefox['n'][:] + boxes_chrome['n'][:]
all_boxes['d'] = boxes_firefox['d'][:] + boxes_chrome['d'][:]
visibility = 0.5
draw_bounding_boxes_init([drawing_area_firefox, drawing_area_chrome, boxes_firefox])
else:
all_boxes, boxes_firefox, boxes_chrome = {'n': [], 'd': []}, {'n': [], 'd': []}, {'n': [], 'd': []}
cv2.setMouseCallback('firefox', draw_bounding_boxes, [drawing_area_firefox, drawing_area_chrome, boxes_firefox])
cv2.setMouseCallback('chrome', draw_bounding_boxes, [drawing_area_chrome, drawing_area_firefox, boxes_chrome])
while True:
all_boxes['n'] = boxes_firefox['n'][:] + boxes_chrome['n'][:]
all_boxes['d'] = boxes_firefox['d'][:] + boxes_chrome['d'][:]
if all_boxes['n'] or all_boxes['d']:
visibility = 0.5
firefox_window = cv2.addWeighted(drawing_area_firefox, 1 - visibility, firefox_screenshot, visibility, 0)
chrome_window = cv2.addWeighted(drawing_area_chrome, 1 - visibility, chrome_screenshot, visibility, 0)
firefox_chrome_overlay = cv2.addWeighted(firefox_screenshot, 0.5, chrome_screenshot, 0.5, 0)
cv2.imshow('firefox', firefox_window)
cv2.imshow('chrome', chrome_window)
cv2.imshow('firefox_chrome_overlay', firefox_chrome_overlay)
k = cv2.waitKey(1) & 0xFF
# <Escape> quits marking area without saving
if k == key_map['Escape']:
cv2.destroyAllWindows()
return 1
# 'r' resets the present selection of bounding boxes
elif k == key_map['r']:
drawing_area_firefox = reset_bounding_boxes(firefox_screenshot.shape)
drawing_area_chrome = reset_bounding_boxes(chrome_screenshot.shape)
all_boxes, boxes_firefox, boxes_chrome = {'n': [], 'd': []}, {'n': [], 'd': []}, {'n': [], 'd': []}
cv2.setMouseCallback('firefox', draw_bounding_boxes, [drawing_area_firefox, drawing_area_chrome, boxes_firefox])
cv2.setMouseCallback('chrome', draw_bounding_boxes, [drawing_area_chrome, drawing_area_firefox, boxes_chrome])
# <Return> saves the current marking and moves to next image
elif k == key_map['Enter']:
if visibility == 1:
visibility = 0.5
else:
bounding_boxes[current_image + '_firefox'] = boxes_firefox
bounding_boxes[current_image + '_chrome'] = boxes_chrome
if len(boxes_chrome['n'] + boxes_firefox['n'] + boxes_chrome['d'] + boxes_firefox['d']) == 0:
labels[current_image] = 'y'
elif len(boxes_chrome['n'] + boxes_firefox['n']) == 0:
labels[current_image] = 'd'
else:
labels[current_image] = 'n'
image_index += 1
return 0
# <Space> skips the labeling of current image
elif k == key_map['Space']:
image_index += 1
return 0
elif k == key_map['y']:
bounding_boxes[current_image + '_firefox'] = boxes_firefox
bounding_boxes[current_image + '_chrome'] = boxes_chrome
labels[current_image] = 'y'
image_index += 1
return 0
elif k == key_map['right_d']:
image_index += 1
return 0
elif k == key_map['left_a']:
image_index -= 1
return 0
def show_help():
print('\n=========================== Guidelines for Labeling =================================')
print('1. Press *y* to mark the images as compatible')
print('2. Press *Enter* to select regions')
print('3. Click the T button in the top left corner of a bounding box to toggle between classes')
print('4. *Purple* corresponds to (not compatible) *n*')
print('5. *Yellow* corresponds to (compatible but different) *d*')
print('6. Press *Enter* again to save changes')
print('7. Press *Space* to skip the images')
print('8. Press *a* and *d* to navigate left and right, respectively')
print('9. Press *Escape* to exit the labeling')
print('======================================================================================\n')
def images_cmp(x, y):
img_list_x = x.split('_')
img_list_y = y.split('_')
if len(img_list_x) != len(img_list_y):
return len(img_list_x) - len(img_list_y)
for (f1, f2) in zip(img_list_x, img_list_y):
if f1 == f2:
continue
if f1.isdigit():
return int(f1) - int(f2)
def group_images():
global images_to_show
sorted_images_to_show = sorted(images_to_show, key=functools.cmp_to_key(images_cmp))
if args.verify:
bug_ids = OrderedDict.fromkeys([utils.parse_file_name(file_name)['bug_id'] for file_name in images_to_show])
else:
bug_ids = OrderedDict.fromkeys([utils.parse_file_name(file_name)['bug_id'] for file_name in images_not_in_all_labels + images_in_all_labels])
images_to_show = [file_name for bug_id in bug_ids for file_name in sorted_images_to_show if bug_id == utils.parse_file_name(file_name)['bug_id']]
def main():
show_help()
group_images()
while image_index != len(images_to_show):
if get_new_image():
break
# Store results.
utils.write_bounding_boxes(bounding_boxes, labels_directory + args.file_name + '_bounding_box.json')
utils.write_labels(labels, labels_directory + args.file_name + '.csv')
if __name__ == '__main__':
main()