Return the file path for the WSI object
(self, wsi)
| 241 | |
| 242 | @abstractmethod |
| 243 | def get_file_path(self, wsi) -> str: |
| 244 | """Return the file path for the WSI object""" |
| 245 | raise NotImplementedError(f"Subclass {self.__class__.__name__} must implement this method.") |
| 246 | |
| 247 | @abstractmethod |
| 248 | def get_mpp(self, wsi, level: int) -> tuple[float, float]: |