(self, cat_ids=[])
| 226 | return [self.Imgs[image_ids]] |
| 227 | |
| 228 | def loadCats(self, cat_ids=[]): |
| 229 | if type(cat_ids) == list: |
| 230 | return [self.Cats[cat_id] for cat_id in cat_ids] |
| 231 | elif type(cat_ids) == int: |
| 232 | return [self.Cats[cat_ids]] |
| 233 | |
| 234 | def getRefBox(self, ref_id): |
| 235 | ref = self.Refs[ref_id] |
nothing calls this directly
no outgoing calls
no test coverage detected