(self)
| 168 | |
| 169 | @abstractmethod |
| 170 | def analyze(self): |
| 171 | pass |
| 172 | |
| 173 | def _get_interpolated_img_from_mask_attribute_path(self, base_img, final_img, alpha, order_array): |
| 174 | mask = get_soft_mask(alpha, order_array, self.device, *final_img.shape[2:], k=self.opt.get('k', 10000)) |
nothing calls this directly
no outgoing calls
no test coverage detected