(self)
| 44 | Initilized with a dictionary lookup of classnames to indexes |
| 45 | """ |
| 46 | def __init__(self): |
| 47 | self.label_map = get_label_map(osp.join(COCO_ROOT, 'coco_labels.txt')) |
| 48 | |
| 49 | def __call__(self, target, width, height): |
| 50 | """ |
nothing calls this directly
no test coverage detected