(self, outputs, shape_raw, person_results, i, single_person=True, **kwargs)
| 278 | return None |
| 279 | |
| 280 | def postprocess_threading(self, outputs, shape_raw, person_results, i, single_person=True, **kwargs): |
| 281 | result = self.postprocess(outputs[i], shape_raw[i], cat_id=self.cat_id) |
| 282 | result = self.process_results(result, shape_raw[i], cat_id=self.cat_id, single_person=single_person) |
| 283 | if result is not None and len(result) != 0: |
| 284 | person_results[i] = result |
| 285 | |
| 286 | def forward(self, img, shape_raw, **kwargs): |
| 287 | """ |
no test coverage detected