|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
from __future__ import annotations |
|
|
|
|
|
import logging |
|
|
import threading |
|
|
from typing import TYPE_CHECKING |
|
|
|
|
|
import numpy as np |
|
|
|
|
|
from monai.config import DtypeLike, IgniteInfo |
|
|
from monai.data.folder_layout import FolderLayout |
|
|
from monai.utils import ProbMapKeys, min_version, optional_import |
|
|
from monai.utils.enums import CommonKeys |
|
|
|
|
|
Events, _ = optional_import("ignite.engine", IgniteInfo.OPT_IMPORT_VERSION, min_version, "Events") |
|
|
if TYPE_CHECKING: |
|
|
from ignite.engine import Engine |
|
|
else: |
|
|
Engine, _ = optional_import("ignite.engine", IgniteInfo.OPT_IMPORT_VERSION, min_version, "Engine") |
|
|
|
|
|
|
|
|
class ProbMapProducer: |
|
|
""" |
|
|
Event handler triggered on completing every iteration to calculate and save the probability map. |
|
|
This handler use metadata from MetaTensor to create the probability map. This can be simply achieved by using |
|
|
`monai.data.SlidingPatchWSIDataset` or `monai.data.MaskedPatchWSIDataset` as the dataset. |
|
|
|
|
|
""" |
|
|
|
|
|
def __init__( |
|
|
self, |
|
|
output_dir: str = "./", |
|
|
output_postfix: str = "", |
|
|
prob_key: str = "pred", |
|
|
dtype: DtypeLike = np.float64, |
|
|
name: str | None = None, |
|
|
) -> None: |
|
|
""" |
|
|
Args: |
|
|
output_dir: output directory to save probability maps. |
|
|
output_postfix: a string appended to all output file names. |
|
|
prob_key: the key associated to the probability output of the model |
|
|
dtype: the data type in which the probability map is stored. Default np.float64. |
|
|
name: identifier of logging.logger to use, defaulting to `engine.logger`. |
|
|
|
|
|
""" |
|
|
self.folder_layout = FolderLayout( |
|
|
output_dir=output_dir, |
|
|
postfix=output_postfix, |
|
|
extension=".npy", |
|
|
parent=False, |
|
|
makedirs=True, |
|
|
data_root_dir="", |
|
|
) |
|
|
|
|
|
self.logger = logging.getLogger(name) |
|
|
self._name = name |
|
|
self.prob_key = prob_key |
|
|
self.dtype = dtype |
|
|
self.prob_map: dict[str, np.ndarray] = {} |
|
|
self.counter: dict[str, int] = {} |
|
|
self.num_done_images: int = 0 |
|
|
self.num_images: int = 0 |
|
|
self.lock = threading.Lock() |
|
|
|
|
|
def attach(self, engine: Engine) -> None: |
|
|
""" |
|
|
Args: |
|
|
engine: Ignite Engine, it can be a trainer, validator or evaluator. |
|
|
""" |
|
|
|
|
|
image_data = engine.data_loader.dataset.image_data |
|
|
self.num_images = len(image_data) |
|
|
|
|
|
|
|
|
for sample in image_data: |
|
|
name = sample[ProbMapKeys.NAME] |
|
|
self.counter[name] = sample[ProbMapKeys.COUNT] |
|
|
self.prob_map[name] = np.zeros(sample[ProbMapKeys.SIZE], dtype=self.dtype) |
|
|
|
|
|
if self._name is None: |
|
|
self.logger = engine.logger |
|
|
if not engine.has_event_handler(self, Events.ITERATION_COMPLETED): |
|
|
engine.add_event_handler(Events.ITERATION_COMPLETED, self) |
|
|
if not engine.has_event_handler(self.finalize, Events.COMPLETED): |
|
|
engine.add_event_handler(Events.COMPLETED, self.finalize) |
|
|
|
|
|
def __call__(self, engine: Engine) -> None: |
|
|
""" |
|
|
This method assumes self.batch_transform will extract metadata from the input batch. |
|
|
|
|
|
Args: |
|
|
engine: Ignite Engine, it can be a trainer, validator or evaluator. |
|
|
""" |
|
|
if not isinstance(engine.state.batch, dict) or not isinstance(engine.state.output, dict): |
|
|
raise ValueError("engine.state.batch and engine.state.output must be dictionaries.") |
|
|
names = engine.state.batch[CommonKeys.IMAGE].meta[ProbMapKeys.NAME] |
|
|
locs = engine.state.batch[CommonKeys.IMAGE].meta[ProbMapKeys.LOCATION] |
|
|
probs = engine.state.output[self.prob_key] |
|
|
for name, loc, prob in zip(names, locs, probs): |
|
|
self.prob_map[name][tuple(loc)] = prob |
|
|
with self.lock: |
|
|
self.counter[name] -= 1 |
|
|
if self.counter[name] == 0: |
|
|
self.save_prob_map(name) |
|
|
|
|
|
def save_prob_map(self, name: str) -> None: |
|
|
""" |
|
|
This method save the probability map for an image, when its inference is finished, |
|
|
and delete that probability map from memory. |
|
|
|
|
|
Args: |
|
|
name: the name of image to be saved. |
|
|
""" |
|
|
file_path = self.folder_layout.filename(name) |
|
|
np.save(file_path, self.prob_map[name]) |
|
|
|
|
|
self.num_done_images += 1 |
|
|
self.logger.info(f"Inference of '{name}' is done [{self.num_done_images}/{self.num_images}]!") |
|
|
del self.prob_map[name] |
|
|
del self.counter[name] |
|
|
|
|
|
def finalize(self, engine: Engine) -> None: |
|
|
self.logger.info(f"Probability map is created for {self.num_done_images}/{self.num_images} images!") |
|
|
|