(self, image_ori, image, point=None)
| 108 | return reses, [reses[i] for i in ids] |
| 109 | |
| 110 | def predict_masks(self, image_ori, image, point=None): |
| 111 | masks, ious = self.predict(image_ori, image, point) |
| 112 | return self.process_multi_mask(masks, ious, image_ori) |
| 113 | |
| 114 | @staticmethod |
| 115 | def remove_small_regions( |
no test coverage detected