forked from anuragxel/salt
-
Notifications
You must be signed in to change notification settings - Fork 31
/
cocoviewer.py
898 lines (749 loc) · 32.3 KB
/
cocoviewer.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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
#!/usr/bin/env python3
"""COCO Dataset Viewer.
View images with bboxes from the COCO dataset.
"""
import argparse
import colorsys
import json
import logging
import os
import random
import tkinter as tk
import tkinter.ttk as ttk
from tkinter import filedialog, messagebox
from turtle import __forwardmethods
import numpy as np
from PIL import Image, ImageDraw, ImageFont, ImageTk
logging.basicConfig(level=logging.INFO, format="%(levelname)s: %(message)s")
parser = argparse.ArgumentParser(description="View images with bboxes from the COCO dataset")
parser.add_argument("-i", "--images", default="", type=str, metavar="PATH", help="path to images folder")
parser.add_argument(
"-a",
"--annotations",
default="",
type=str,
metavar="PATH",
help="path to annotations json file",
)
class Data:
"""Handles data related stuff."""
def __init__(self, image_dir, annotations_file):
self.image_dir = image_dir
instances, images, categories = parse_coco(annotations_file)
self.instances = instances
self.images = ImageList(images) # NOTE: image list is based on annotations file
self.categories = categories # Dataset categories
# Prepare the very first image
self.current_image = self.images.next() # Set the first image as current
def prepare_image(self, object_based_coloring: bool = False):
"""Prepares image path, objects, colors."""
# TODO: predicted bboxes drawing (from models)
img_id, img_name = self.current_image
full_path = os.path.join(self.image_dir, img_name)
# Get objects and category ids
objects = [obj for obj in self.instances["annotations"] if obj["image_id"] == img_id]
obj_categories_ids = [obj["category_id"] for obj in objects]
# List of category ids of all objects
img_obj_categories = [obj["category_id"] for obj in objects]
# Current image categories (unique sorted category ids)
img_categories = sorted(list(set(img_obj_categories)))
# Get category name-color pairs for the objects
names_colors = [self.categories[i] for i in obj_categories_ids]
# Objects based coloring (instances)
if object_based_coloring:
names_colors_obj = []
# Get new colors for the image
obj_colors = prepare_colors(len(objects))
# Update name-color pairs
for i in range(len(objects)):
names_colors_obj.append([names_colors[i][0], obj_colors[i]])
names_colors = names_colors_obj
return full_path, objects, names_colors, img_obj_categories, img_categories
def next_image(self):
"""Loads the next image in a list."""
self.current_image = self.images.next()
def previous_image(self):
"""Loads the previous image in a list."""
self.current_image = self.images.prev()
def parse_coco(annotations_file: str) -> tuple:
"""Parses COCO json annotation file."""
instances = load_annotations(annotations_file)
images = get_images(instances)
categories = get_categories(instances)
return instances, images, categories
def load_annotations(fname: str) -> dict:
"""Loads annotations file."""
logging.info(f"Parsing {fname}...")
with open(fname) as f:
instances = json.load(f)
return instances
def get_images(instances: dict) -> list:
"""Extracts all image ids and file names from annotations file."""
return [(image["id"], image["file_name"]) for image in instances["images"]]
def open_image(full_img_path: str):
"""Opens image, creates draw context."""
# Open image
img_open = Image.open(full_img_path).convert("RGBA")
# Create layer for bboxes and masks
draw_layer = Image.new("RGBA", img_open.size, (255, 255, 255, 0))
draw = ImageDraw.Draw(draw_layer)
return img_open, draw_layer, draw
def prepare_colors(n_objects: int, shuffle: bool = True) -> list:
"""Get some colors."""
# Get some colors
hsv_tuples = [(x / n_objects, 1.0, 1.0) for x in range(n_objects)]
colors = list(map(lambda x: colorsys.hsv_to_rgb(*x), hsv_tuples))
colors = list(map(lambda x: (int(x[0] * 255), int(x[1] * 255), int(x[2] * 255)), colors))
# Shuffle colors
if shuffle:
random.seed(42)
random.shuffle(colors)
random.seed(None)
return colors
def get_categories(instances: dict) -> dict:
"""Extracts categories from annotations file and prepares color for each one."""
# Parse categories
colors = prepare_colors(n_objects=80, shuffle=True)
categories = list(
zip(
[[category["id"], category["name"]] for category in instances["categories"]],
colors,
)
)
categories = dict([[cat[0][0], [cat[0][1], cat[1]]] for cat in categories])
return categories
def draw_bboxes(draw, objects, labels, obj_categories, ignore, width, label_size):
"""Puts rectangles on the image."""
# Extracting bbox coordinates
bboxes = [
[
obj["bbox"][0],
obj["bbox"][1],
obj["bbox"][0] + obj["bbox"][2],
obj["bbox"][1] + obj["bbox"][3],
]
for obj in objects
]
# Draw bboxes
for i, (c, b) in enumerate(zip(obj_categories, bboxes)):
if i not in ignore:
draw.rectangle(b, outline=c[-1], width=width)
if labels:
text = c[0]
try:
try:
# Should work for Linux
font = ImageFont.truetype("DejaVuSans.ttf", size=label_size)
except OSError:
# Should work for Windows
font = ImageFont.truetype("Arial.ttf", size=label_size)
except OSError:
# Load default, note no resize option
# TODO: Implement notification message as popup window
font = ImageFont.load_default()
tw, th = draw.textsize(text, font)
tx0 = b[0]
ty0 = b[1] - th
# TODO: Looks weird! We need image dims to make it right
tx0 = max(b[0], max(b[0], tx0)) if tx0 < 0 else tx0
ty0 = max(b[1], max(0, ty0)) if ty0 < 0 else ty0
tx1 = tx0 + tw
ty1 = ty0 + th
# TODO: The same here
if tx1 > b[2]:
tx0 = max(0, tx0 - (tx1 - b[2]))
tx1 = tw if tx0 == 0 else b[2]
draw.rectangle((tx0, ty0, tx1, ty1), fill=c[-1])
draw.text((tx0, ty0), text, (255, 255, 255), font=font)
def draw_masks(draw, objects, obj_categories, ignore, alpha):
"""Draws a masks over image."""
masks = [obj["segmentation"] for obj in objects]
# Draw masks
for i, (c, m) in enumerate(zip(obj_categories, masks)):
if i not in ignore:
alpha = alpha
fill = tuple(list(c[-1]) + [alpha])
# Polygonal masks work fine
if isinstance(m, list):
for m_ in m:
if m_:
draw.polygon(m_, outline=fill, fill=fill)
# RLE mask for collection of objects (iscrowd=1)
elif isinstance(m, dict) and objects[i]["iscrowd"]:
mask = rle_to_mask(m["counts"][:-1], m["size"][0], m["size"][1])
mask = Image.fromarray(mask)
draw.bitmap((0, 0), mask, fill=fill)
else:
continue
def rle_to_mask(rle, height, width):
rows, cols = height, width
rle_pairs = np.array(rle).reshape(-1, 2)
img = np.zeros(rows * cols, dtype=np.uint8)
index_offset = 0
for index, length in rle_pairs:
index_offset += index
img[index_offset : index_offset + length] = 255
index_offset += length
img = img.reshape(cols, rows)
img = img.T
return img
class ImageList:
"""Handles iterating through the images."""
def __init__(self, images: list):
self.image_list = images or []
self.n = -1
self.max = len(self.image_list)
def next(self):
"""Sets the next image as current."""
self.n += 1
if self.n < self.max:
current_image = self.image_list[self.n]
else:
self.n = 0
current_image = self.image_list[self.n]
return current_image
def prev(self):
"""Sets the previous image as current."""
if self.n == 0:
self.n = self.max - 1
current_image = self.image_list[self.n]
else:
self.n -= 1
current_image = self.image_list[self.n]
return current_image
class ImagePanel(ttk.Frame):
"""ttk port of original turtle.ScrolledCanvas code."""
def __init__(self, parent, width=768, height=480, canvwidth=600, canvheight=500):
super().__init__(parent, width=width, height=height)
self._rootwindow = self.winfo_toplevel()
self.width, self.height = width, height
self.canvwidth, self.canvheight = canvwidth, canvheight
self.bg = "gray15"
self.pack(fill=tk.BOTH, expand=True)
self._canvas = tk.Canvas(
parent,
width=width,
height=height,
bg=self.bg,
relief="sunken",
borderwidth=2,
)
self.hscroll = ttk.Scrollbar(parent, command=self._canvas.xview, orient=tk.HORIZONTAL)
self.vscroll = ttk.Scrollbar(parent, command=self._canvas.yview)
self._canvas.configure(xscrollcommand=self.hscroll.set, yscrollcommand=self.vscroll.set)
self.rowconfigure(0, weight=1, minsize=0)
self.columnconfigure(0, weight=1, minsize=0)
self._canvas.grid(
padx=1,
in_=self,
pady=1,
row=0,
column=0,
rowspan=1,
columnspan=1,
sticky=tk.NSEW,
)
self.vscroll.grid(
padx=1,
in_=self,
pady=1,
row=0,
column=1,
rowspan=1,
columnspan=1,
sticky=tk.NSEW,
)
self.hscroll.grid(
padx=1,
in_=self,
pady=1,
row=1,
column=0,
rowspan=1,
columnspan=1,
sticky=tk.NSEW,
)
self.reset()
self._rootwindow.bind("<Configure>", self.on_resize)
def reset(self, canvwidth=None, canvheight=None, bg=None):
"""Adjusts canvas and scrollbars according to given canvas size."""
if canvwidth:
self.canvwidth = canvwidth
if canvheight:
self.canvheight = canvheight
if bg:
self.bg = bg
self._canvas.config(
bg=bg,
scrollregion=(
-self.canvwidth // 2,
-self.canvheight // 2,
self.canvwidth // 2,
self.canvheight // 2,
),
)
self._canvas.xview_moveto(0.5 * (self.canvwidth - self.width + 30) / self.canvwidth)
self._canvas.yview_moveto(0.5 * (self.canvheight - self.height + 30) / self.canvheight)
self.adjust_scrolls()
def adjust_scrolls(self):
"""Adjusts scrollbars according to window- and canvas-size."""
cwidth = self._canvas.winfo_width()
cheight = self._canvas.winfo_height()
self._canvas.xview_moveto(0.5 * (self.canvwidth - cwidth) / self.canvwidth)
self._canvas.yview_moveto(0.5 * (self.canvheight - cheight) / self.canvheight)
if cwidth < self.canvwidth:
self.hscroll.grid(
padx=1,
in_=self,
pady=1,
row=1,
column=0,
rowspan=1,
columnspan=1,
sticky=tk.NSEW,
)
else:
self.hscroll.grid_forget()
if cheight < self.canvheight:
self.vscroll.grid(
padx=1,
in_=self,
pady=1,
row=0,
column=1,
rowspan=1,
columnspan=1,
sticky=tk.NSEW,
)
else:
self.vscroll.grid_forget()
def on_resize(self, event):
self.adjust_scrolls()
def bbox(self, *args):
return self._canvas.bbox(*args)
def cget(self, *args, **kwargs):
return self._canvas.cget(*args, **kwargs)
def config(self, *args, **kwargs):
self._canvas.config(*args, **kwargs)
def bind(self, *args, **kwargs):
self._canvas.bind(*args, **kwargs)
def unbind(self, *args, **kwargs):
self._canvas.unbind(*args, **kwargs)
def focus_force(self):
self._canvas.focus_force()
__forwardmethods(ImagePanel, tk.Canvas, "_canvas")
class StatusBar(ttk.Frame):
"""Shows status line on the bottom."""
def __init__(self, parent):
super().__init__(parent)
# self.configure(bd="gray75")
self.pack(side=tk.BOTTOM, fill=tk.X)
self.file_count = ttk.Label(self, borderwidth=5, background="gray75")
self.file_count.pack(side=tk.RIGHT)
self.description = ttk.Label(self, borderwidth=5, background="gray75")
self.description.pack(side=tk.RIGHT)
self.file_name = ttk.Label(self, borderwidth=5, background="gray75")
self.file_name.pack(side=tk.LEFT)
self.nobjects = ttk.Label(self, borderwidth=5, background="gray75")
self.nobjects.pack(side=tk.LEFT)
self.ncategories = ttk.Label(self, borderwidth=5, background="gray75")
self.ncategories.pack(side=tk.LEFT)
class Menu(tk.Menu):
def __init__(self, parent):
super().__init__(parent)
# Define menu structure
self.file = self.file_menu()
self.view = self.view_menu()
def file_menu(self):
"""File Menu."""
menu = tk.Menu(self, tearoff=False)
menu.add_command(label="Save", accelerator="Ctrl+S")
menu.add_separator()
menu.add_command(label="Exit", accelerator="Ctrl+Q")
self.add_cascade(label="File", menu=menu)
return menu
def view_menu(self):
"""View Menu."""
menu = tk.Menu(self, tearoff=False)
menu.add_checkbutton(label="BBoxes", onvalue=True, offvalue=False)
menu.add_checkbutton(label="Labels", onvalue=True, offvalue=False)
menu.add_checkbutton(label="Masks", onvalue=True, offvalue=False)
self.add_cascade(label="View", menu=menu)
menu.colormenu = tk.Menu(menu, tearoff=0)
menu.colormenu.add_radiobutton(label="Categories", value=False)
menu.colormenu.add_radiobutton(label="Objects", value=True)
menu.add_cascade(label="Coloring", menu=menu.colormenu)
return menu
class ObjectsPanel(ttk.PanedWindow):
"""Panels with listed objects and categories for the image."""
def __init__(self, parent):
super().__init__(parent)
self.pack(side=tk.RIGHT, fill=tk.Y)
# Categories subpanel
self.category_subpanel = ttk.Frame()
ttk.Label(
self.category_subpanel,
text="categories",
borderwidth=2,
background="gray50",
).pack(side=tk.TOP, fill=tk.X)
self.category_box = tk.Listbox(self.category_subpanel, selectmode=tk.EXTENDED, exportselection=0)
self.category_box.pack(side=tk.TOP, fill=tk.Y, expand=True)
self.add(self.category_subpanel)
# Objects subpanel
self.object_subpanel = ttk.Frame()
ttk.Label(self.object_subpanel, text="objects", borderwidth=2, background="gray50").pack(side=tk.TOP, fill=tk.X)
self.object_box = tk.Listbox(self.object_subpanel, selectmode=tk.EXTENDED, exportselection=0)
self.object_box.pack(side=tk.TOP, fill=tk.Y, expand=True)
self.add(self.object_subpanel)
class SlidersBar(ttk.Frame):
def __init__(self, parent):
super().__init__(parent)
self.pack(side=tk.BOTTOM, fill=tk.X)
# Bbox thickness controller
self.bbox_slider = tk.Scale(self, label="bbox", from_=0, to=25, tickinterval=5, orient=tk.HORIZONTAL)
self.bbox_slider.pack(side=tk.LEFT, fill=tk.X, expand=True)
# Label text size controller
self.label_slider = tk.Scale(self, label="label", from_=10, to=100, tickinterval=25, orient=tk.HORIZONTAL)
self.label_slider.pack(side=tk.LEFT, fill=tk.X, expand=True)
# Mask transparency controller
self.mask_slider = tk.Scale(self, label="mask", from_=0, to=255, tickinterval=50, orient=tk.HORIZONTAL)
self.mask_slider.pack(side=tk.LEFT, fill=tk.X, expand=True)
class Controller:
def __init__(self, data, root, image_panel, statusbar, menu, objects_panel, sliders):
self.data = data # data layer
self.root = root # root window
self.image_panel = image_panel # image panel
self.statusbar = statusbar # statusbar on the bottom
self.menu = menu # main menu on the top
self.objects_panel = objects_panel
self.sliders = sliders
# StatusBar Vars
self.file_count_status = tk.StringVar()
self.file_name_status = tk.StringVar()
self.description_status = tk.StringVar()
self.nobjects_status = tk.StringVar()
self.ncategories_status = tk.StringVar()
self.statusbar.file_count.configure(textvariable=self.file_count_status)
self.statusbar.file_name.configure(textvariable=self.file_name_status)
self.statusbar.description.configure(textvariable=self.description_status)
self.statusbar.nobjects.configure(textvariable=self.nobjects_status)
self.statusbar.ncategories.configure(textvariable=self.ncategories_status)
# Menu Vars
self.bboxes_on_global = tk.BooleanVar() # Toggles bboxes globally
self.bboxes_on_global.set(True)
self.labels_on_global = tk.BooleanVar() # Toggles category labels
self.labels_on_global.set(True)
self.masks_on_global = tk.BooleanVar() # Toggles masks globally
self.masks_on_global.set(True)
self.coloring_on_global = tk.BooleanVar() # Toggles objects/categories coloring
self.coloring_on_global.set(False) # False for categories (defaults), True for objects
# Menu Configuration
self.menu.file.entryconfigure("Save", command=self.save_image)
self.menu.file.entryconfigure("Exit", command=self.exit)
self.menu.view.entryconfigure("BBoxes", variable=self.bboxes_on_global, command=self.menu_view_bboxes)
self.menu.view.entryconfigure("Labels", variable=self.labels_on_global, command=self.menu_view_labels)
self.menu.view.entryconfigure("Masks", variable=self.masks_on_global, command=self.menu_view_masks)
self.menu.view.colormenu.entryconfigure(
"Categories",
variable=self.coloring_on_global,
command=self.menu_view_coloring,
)
self.menu.view.colormenu.entryconfigure(
"Objects", variable=self.coloring_on_global, command=self.menu_view_coloring
)
self.root.configure(menu=self.menu)
# Init local setup (for the current (active) image)
self.bboxes_on_local = self.bboxes_on_global.get()
self.labels_on_local = self.labels_on_global.get()
self.masks_on_local = self.masks_on_global.get()
self.coloring_on_local = self.coloring_on_global.get()
# Objects Panel stuff
self.selected_cats = None
self.selected_objs = None
self.category_box_content = tk.StringVar()
self.object_box_content = tk.StringVar()
self.objects_panel.category_box.configure(listvariable=self.category_box_content)
self.objects_panel.object_box.configure(listvariable=self.object_box_content)
# Sliders Setup
self.bbox_thickness = tk.IntVar()
self.bbox_thickness.set(3)
self.label_size = tk.IntVar()
self.label_size.set(15)
self.mask_alpha = tk.IntVar()
self.mask_alpha.set(128)
self.sliders.bbox_slider.configure(variable=self.bbox_thickness, command=lambda e: self.update_img())
self.sliders.label_slider.configure(variable=self.label_size, command=lambda e: self.update_img())
self.sliders.mask_slider.configure(variable=self.mask_alpha, command=lambda e: self.update_img())
# Bind all events
self.bind_events()
# Compose the very first image
self.current_composed_image = None
self.current_img_obj_categories = None
self.current_img_categories = None
self.update_img()
def set_locals(self):
self.bboxes_on_local = self.bboxes_on_global.get()
self.labels_on_local = self.labels_on_global.get()
self.masks_on_local = self.masks_on_global.get()
self.coloring_on_local = self.coloring_on_global.get()
# Update sliders
self.update_sliders_state()
def compose_image(
self,
full_path,
objects,
names_colors,
bboxes_on: bool = True,
labels_on: bool = True,
masks_on: bool = True,
ignore: list = None,
width: int = 1,
alpha: int = 128,
label_size: int = 15,
):
ignore = ignore or [] # list of objects to ignore
img_open, draw_layer, draw = open_image(full_path)
# Draw masks
if masks_on:
draw_masks(draw, objects, names_colors, ignore, alpha)
# Draw bounding boxes
if bboxes_on:
draw_bboxes(draw, objects, labels_on, names_colors, ignore, width, label_size)
del draw
# Resulting image
self.current_composed_image = Image.alpha_composite(img_open, draw_layer)
def update_img(self, local=True, width=None, alpha=None, label_size=None):
"""Triggers image composition and sets composed image as current."""
bboxes_on = self.bboxes_on_local if local else self.bboxes_on_global.get()
labels_on = self.labels_on_local if local else self.labels_on_global.get()
masks_on = self.masks_on_local if local else self.masks_on_global.get()
coloring = self.coloring_on_local if local else self.coloring_on_global.get()
# Prepare image
(
full_path,
objects,
names_colors,
img_obj_categories,
img_categories,
) = self.data.prepare_image(coloring)
self.current_img_obj_categories = img_obj_categories
self.current_img_categories = img_categories
if self.selected_objs is None:
ignore = []
else:
ignore = [i for i in range(len(self.current_img_obj_categories)) if i not in self.selected_objs]
width = self.bbox_thickness.get() if width is None else width
alpha = self.mask_alpha.get() if alpha is None else alpha
label_size = self.label_size.get() if label_size is None else label_size
# Compose image
self.compose_image(
full_path=full_path,
objects=objects,
names_colors=names_colors,
bboxes_on=bboxes_on,
labels_on=labels_on,
masks_on=masks_on,
ignore=ignore,
width=width,
alpha=alpha,
label_size=label_size,
)
# Prepare PIL image for Tkinter
img = self.current_composed_image
w, h = img.size
img = ImageTk.PhotoImage(img)
# Set image as current
self.image_panel.create_image(0, 0, image=img)
self.image_panel.image = img
self.image_panel.reset(canvwidth=w, canvheight=h)
# Update statusbar vars
self.file_count_status.set(f"{str(self.data.images.n + 1)}/{self.data.images.max}")
self.file_name_status.set(f"{self.data.current_image[-1]}")
self.description_status.set(f"{self.data.instances.get('info', {}).get('description', '')}")
self.nobjects_status.set(f"objects: {len(self.current_img_obj_categories)}")
self.ncategories_status.set(f"categories: {len(self.current_img_categories)}")
# Update Objects panel
self.update_category_box()
self.update_object_box()
def exit(self, event=None):
print_info("Exiting...")
self.root.quit()
def next_img(self, event=None):
self.data.next_image()
self.set_locals()
self.selected_cats = None
self.selected_objs = None
self.update_img(local=False)
def prev_img(self, event=None):
self.data.previous_image()
self.set_locals()
self.selected_cats = None
self.selected_objs = None
self.update_img(local=False)
def save_image(self, event=None):
"""Saves composed image as png file."""
# Initial (original) file name
initialfile = self.data.current_image[-1].split(".")[0]
# TODO: Add more formats, at least jpg (RGBA -> RGB)?
filetypes = (("png files", "*.png"), ("all files", "*.*"))
# By default save as png file
defaultextension = ".png"
file = filedialog.asksaveasfilename(
initialfile=initialfile,
filetypes=filetypes,
defaultextension=defaultextension,
)
# If not canceled:
if file:
self.current_composed_image.save(file)
def menu_view_bboxes(self):
self.bboxes_on_local = self.bboxes_on_global.get()
self.bbox_slider_status_update()
self.update_img()
def menu_view_labels(self):
self.labels_on_local = self.labels_on_global.get()
self.label_slider_status_update()
self.update_img()
def menu_view_masks(self):
self.masks_on_local = self.masks_on_global.get()
self.masks_slider_status_update()
self.update_img()
def menu_view_coloring(self):
self.coloring_on_local = self.coloring_on_global.get()
self.update_img()
def toggle_bboxes(self, event=None):
self.bboxes_on_local = not self.bboxes_on_local
self.bbox_slider_status_update()
self.update_img()
def toggle_labels(self, event=None):
self.labels_on_local = not self.labels_on_local
self.label_slider_status_update()
self.update_img()
def toggle_masks(self, event=None):
self.masks_on_local = not self.masks_on_local
self.update_img()
def toggle_all(self, event=None):
# Toggle only when focused on image
if event.widget.focus_get() is self.objects_panel.category_box:
return
if event.widget.focus_get() is self.objects_panel.object_box:
return
# What to toggle
var_list = [self.bboxes_on_local, self.labels_on_local, self.masks_on_local]
# if any is on, turn them off
if True in set(var_list):
self.bboxes_on_local = False
self.labels_on_local = False
self.masks_on_local = False
# if all is off, turn them on
else:
self.bboxes_on_local = True
self.labels_on_local = True
self.masks_on_local = True
# Update sliders
self.update_sliders_state()
# Update image with updated vars
self.update_img()
def update_category_box(self):
ids = self.current_img_categories
names = [self.data.categories[i][0] for i in ids]
self.category_box_content.set([" ".join([str(i), str(n)]) for i, n in zip(ids, names)])
self.objects_panel.category_box.selection_clear(0, tk.END)
if self.selected_cats is not None:
for i in self.selected_cats:
self.objects_panel.category_box.select_set(i)
else:
self.objects_panel.category_box.select_set(0, tk.END)
def select_category(self, event):
# Get selection from user
selected_ids = self.objects_panel.category_box.curselection()
# Set selected_cats
self.selected_cats = selected_ids
# Set selected_objs
selected_objs = []
for ci in self.selected_cats:
for i, o in enumerate(self.current_img_obj_categories):
if self.current_img_categories[ci] == o:
selected_objs.append(i)
self.selected_objs = selected_objs
self.update_img()
def update_object_box(self):
ids = self.current_img_obj_categories
names = [self.data.categories[i][0] for i in ids]
self.object_box_content.set([" ".join([str(i), str(n)]) for i, n in enumerate(names)])
self.objects_panel.object_box.selection_clear(0, tk.END)
if self.selected_objs is not None:
for i in self.selected_objs:
self.objects_panel.object_box.select_set(i)
else:
self.objects_panel.object_box.select_set(0, tk.END)
def select_object(self, event):
# Get selection from user
selected_ids = self.objects_panel.object_box.curselection()
# Set selected_cats
self.selected_objs = selected_ids
# Set selected_objs
selected_cats = []
for oi in self.selected_objs:
for i, c in enumerate(self.current_img_categories):
if self.current_img_obj_categories[oi] == c:
selected_cats.append(i)
self.selected_cats = selected_cats
self.update_img()
def update_sliders_state(self):
self.bbox_slider_status_update()
self.label_slider_status_update()
self.masks_slider_status_update()
def bbox_slider_status_update(self):
self.sliders.bbox_slider.configure(state=tk.NORMAL if self.bboxes_on_local else tk.DISABLED)
def label_slider_status_update(self):
self.sliders.label_slider.configure(state=tk.NORMAL if self.labels_on_local else tk.DISABLED)
def masks_slider_status_update(self):
self.sliders.mask_slider.configure(state=tk.NORMAL if self.masks_on_local else tk.DISABLED)
def bind_events(self):
"""Binds events."""
# Navigation
self.root.bind("<Left>", self.prev_img)
self.root.bind("<k>", self.prev_img)
self.root.bind("<Right>", self.next_img)
self.root.bind("<j>", self.next_img)
self.root.bind("<Control-q>", self.exit)
self.root.bind("<Control-w>", self.exit)
# Files
self.root.bind("<Control-s>", self.save_image)
# View Toggles
self.root.bind("<b>", self.toggle_bboxes)
self.root.bind("<Control-b>", self.toggle_bboxes)
self.root.bind("<l>", self.toggle_labels)
self.root.bind("<Control-l>", self.toggle_labels)
self.root.bind("<m>", self.toggle_masks)
self.root.bind("<Control-m>", self.toggle_masks)
self.root.bind("<space>", self.toggle_all)
# Objects Panel
self.objects_panel.category_box.bind("<<ListboxSelect>>", self.select_category)
self.objects_panel.object_box.bind("<<ListboxSelect>>", self.select_object)
self.image_panel.bind("<Button-1>", lambda e: self.image_panel.focus_set())
def print_info(message: str):
logging.info(message)
def main():
print_info("Starting...")
args = parser.parse_args()
root = tk.Tk()
root.title("COCO Viewer")
if not args.images or not args.annotations:
root.geometry("300x150") # app size when no data is provided
messagebox.showwarning("Warning!", "Nothing to show.\nPlease specify a path to the COCO dataset!")
print_info("Exiting...")
root.destroy()
return
data = Data(args.images, args.annotations)
statusbar = StatusBar(root)
sliders = SlidersBar(root)
objects_panel = ObjectsPanel(root)
menu = Menu(root)
image_panel = ImagePanel(root)
Controller(data, root, image_panel, statusbar, menu, objects_panel, sliders)
root.mainloop()
if __name__ == "__main__":
main()