-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding no-kalman tracking mode, class_id aggregation, video tracking …
…examples and other small improvements (#17)
- Loading branch information
Showing
20 changed files
with
674 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
from typing import Sequence | ||
|
||
COCO_LABELS = {0: '__background__', | ||
1: 'person', | ||
2: 'bicycle', | ||
3: 'car', | ||
4: 'motorcycle', | ||
5: 'airplane', | ||
6: 'bus', | ||
7: 'train', | ||
8: 'truck', | ||
9: 'boat', | ||
10: 'traffic light', | ||
11: 'fire hydrant', | ||
12: 'stop sign', | ||
13: 'parking meter', | ||
14: 'bench', | ||
15: 'bird', | ||
16: 'cat', | ||
17: 'dog', | ||
18: 'horse', | ||
19: 'sheep', | ||
20: 'cow', | ||
21: 'elephant', | ||
22: 'bear', | ||
23: 'zebra', | ||
24: 'giraffe', | ||
25: 'backpack', | ||
26: 'umbrella', | ||
27: 'handbag', | ||
28: 'tie', | ||
29: 'suitcase', | ||
30: 'frisbee', | ||
31: 'skis', | ||
32: 'snowboard', | ||
33: 'sports ball', | ||
34: 'kite', | ||
35: 'baseball bat', | ||
36: 'baseball glove', | ||
37: 'skateboard', | ||
38: 'surfboard', | ||
39: 'tennis racket', | ||
40: 'bottle', | ||
41: 'wine glass', | ||
42: 'cup', | ||
43: 'fork', | ||
44: 'knife', | ||
45: 'spoon', | ||
46: 'bowl', | ||
47: 'banana', | ||
48: 'apple', | ||
49: 'sandwich', | ||
50: 'orange', | ||
51: 'broccoli', | ||
52: 'carrot', | ||
53: 'hot dog', | ||
54: 'pizza', | ||
55: 'donut', | ||
56: 'cake', | ||
57: 'chair', | ||
58: 'couch', | ||
59: 'potted plant', | ||
60: 'bed', | ||
61: 'dining table', | ||
62: 'toilet', | ||
63: 'tv', | ||
64: 'laptop', | ||
65: 'mouse', | ||
66: 'remote', | ||
67: 'keyboard', | ||
68: 'cell phone', | ||
69: 'microwave', | ||
70: 'oven', | ||
71: 'toaster', | ||
72: 'sink', | ||
73: 'refrigerator', | ||
74: 'book', | ||
75: 'clock', | ||
76: 'vase', | ||
77: 'scissors', | ||
78: 'teddy bear', | ||
79: 'hair drier', | ||
80: 'toothbrush'} | ||
|
||
|
||
def get_class_ids(labels) -> Sequence[int]: | ||
if len(labels) == 0: | ||
raise ValueError('specify more than one label to detect') | ||
|
||
if isinstance(labels[0], int): | ||
for class_id in labels: | ||
if class_id not in COCO_LABELS: | ||
raise ValueError(f'provided unknown COCO class id: {class_id}') | ||
|
||
return labels | ||
elif isinstance(labels[0], str): | ||
inv = {v: k for k, v in COCO_LABELS.items()} | ||
class_ids = [] | ||
for class_name in labels: | ||
if class_name not in inv: | ||
raise ValueError(f'provided unknown COCO class name: {class_name}') | ||
|
||
class_ids.append(inv[class_name]) | ||
|
||
return class_ids | ||
else: | ||
raise NotImplementedError() |
Oops, something went wrong.