Print information about the annotation file. :return:
(self)
| 114 | self.cats = cats |
| 115 | |
| 116 | def info(self): |
| 117 | """ |
| 118 | Print information about the annotation file. |
| 119 | :return: |
| 120 | """ |
| 121 | for key, value in self.dataset['info'].items(): |
| 122 | print('{}: {}'.format(key, value)) |
| 123 | |
| 124 | def getAnnIds(self, imgIds=[], catIds=[], areaRng=[], iscrowd=None): |
| 125 | """ |
no test coverage detected