Source code for monai.data.dataset_summary

# Copyright (c) MONAI Consortium
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#     http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from itertools import chain
from typing import List, Optional

import numpy as np
import torch

from monai.config import KeysCollection
from monai.data.dataloader import DataLoader
from monai.data.dataset import Dataset
from monai.transforms import concatenate
from monai.utils import convert_data_type
from monai.utils.enums import PostFix

DEFAULT_POST_FIX = PostFix.meta()


[docs]class DatasetSummary: """ This class provides a way to calculate a reasonable output voxel spacing according to the input dataset. The achieved values can used to resample the input in 3d segmentation tasks (like using as the `pixdim` parameter in `monai.transforms.Spacingd`). In addition, it also supports to count the mean, std, min and max intensities of the input, and these statistics are helpful for image normalization (like using in `monai.transforms.ScaleIntensityRanged` and `monai.transforms.NormalizeIntensityd`). The algorithm for calculation refers to: `Automated Design of Deep Learning Methods for Biomedical Image Segmentation <https://arxiv.org/abs/1904.08128>`_. """ def __init__( self, dataset: Dataset, image_key: Optional[str] = "image", label_key: Optional[str] = "label", meta_key: Optional[KeysCollection] = None, meta_key_postfix: str = DEFAULT_POST_FIX, num_workers: int = 0, **kwargs, ): """ Args: dataset: dataset from which to load the data. image_key: key name of images (default: ``image``). label_key: key name of labels (default: ``label``). meta_key: explicitly indicate the key of the corresponding metadata dictionary. for example, for data with key `image`, the metadata by default is in `image_meta_dict`. the metadata is a dictionary object which contains: filename, affine, original_shape, etc. if None, will try to construct meta_keys by `{image_key}_{meta_key_postfix}`. meta_key_postfix: use `{image_key}_{meta_key_postfix}` to fetch the metadata from dict, the metadata is a dictionary object (default: ``meta_dict``). num_workers: how many subprocesses to use for data loading. ``0`` means that the data will be loaded in the main process (default: ``0``). kwargs: other parameters (except `batch_size` and `num_workers`) for DataLoader, this class forces to use ``batch_size=1``. """ self.data_loader = DataLoader(dataset=dataset, batch_size=1, num_workers=num_workers, **kwargs) self.image_key = image_key self.label_key = label_key self.meta_key = meta_key or f"{image_key}_{meta_key_postfix}" self.all_meta_data: List = [] def collect_meta_data(self): """ This function is used to collect the metadata for all images of the dataset. """ for data in self.data_loader: if self.meta_key not in data: raise ValueError(f"To collect metadata for the dataset, key `{self.meta_key}` must exist in `data`.") self.all_meta_data.append(data[self.meta_key]) def get_target_spacing(self, spacing_key: str = "pixdim", anisotropic_threshold: int = 3, percentile: float = 10.0): """ Calculate the target spacing according to all spacings. If the target spacing is very anisotropic, decrease the spacing value of the maximum axis according to percentile. So far, this function only supports NIFTI images which store spacings in headers with key "pixdim". After loading with `monai.DataLoader`, "pixdim" is in the form of `torch.Tensor` with size `(batch_size, 8)`. Args: spacing_key: key of spacing in metadata (default: ``pixdim``). anisotropic_threshold: threshold to decide if the target spacing is anisotropic (default: ``3``). percentile: for anisotropic target spacing, use the percentile of all spacings of the anisotropic axis to replace that axis. """ if len(self.all_meta_data) == 0: self.collect_meta_data() if spacing_key not in self.all_meta_data[0]: raise ValueError("The provided spacing_key is not in self.all_meta_data.") all_spacings = concatenate(to_cat=[data[spacing_key][:, 1:4] for data in self.all_meta_data], axis=0) all_spacings, *_ = convert_data_type(data=all_spacings, output_type=np.ndarray, wrap_sequence=True) target_spacing = np.median(all_spacings, axis=0) if max(target_spacing) / min(target_spacing) >= anisotropic_threshold: largest_axis = np.argmax(target_spacing) target_spacing[largest_axis] = np.percentile(all_spacings[:, largest_axis], percentile) output = list(target_spacing) return tuple(output) def calculate_statistics(self, foreground_threshold: int = 0): """ This function is used to calculate the maximum, minimum, mean and standard deviation of intensities of the input dataset. Args: foreground_threshold: the threshold to distinguish if a voxel belongs to foreground, this parameter is used to select the foreground of images for calculation. Normally, `label > 0` means the corresponding voxel belongs to foreground, thus if you need to calculate the statistics for whole images, you can set the threshold to ``-1`` (default: ``0``). """ voxel_sum = torch.as_tensor(0.0) voxel_square_sum = torch.as_tensor(0.0) voxel_max, voxel_min = [], [] voxel_ct = 0 for data in self.data_loader: if self.image_key and self.label_key: image, label = data[self.image_key], data[self.label_key] else: image, label = data image, *_ = convert_data_type(data=image, output_type=torch.Tensor) label, *_ = convert_data_type(data=label, output_type=torch.Tensor) image_foreground = image[torch.where(label > foreground_threshold)] voxel_max.append(image_foreground.max().item()) voxel_min.append(image_foreground.min().item()) voxel_ct += len(image_foreground) voxel_sum += image_foreground.sum() voxel_square_sum += torch.square(image_foreground).sum() self.data_max, self.data_min = max(voxel_max), min(voxel_min) self.data_mean = (voxel_sum / voxel_ct).item() self.data_std = (torch.sqrt(voxel_square_sum / voxel_ct - self.data_mean**2)).item() def calculate_percentiles( self, foreground_threshold: int = 0, sampling_flag: bool = True, interval: int = 10, min_percentile: float = 0.5, max_percentile: float = 99.5, ): """ This function is used to calculate the percentiles of intensities (and median) of the input dataset. To get the required values, all voxels need to be accumulated. To reduce the memory used, this function can be set to accumulate only a part of the voxels. Args: foreground_threshold: the threshold to distinguish if a voxel belongs to foreground, this parameter is used to select the foreground of images for calculation. Normally, `label > 0` means the corresponding voxel belongs to foreground, thus if you need to calculate the statistics for whole images, you can set the threshold to ``-1`` (default: ``0``). sampling_flag: whether to sample only a part of the voxels (default: ``True``). interval: the sampling interval for accumulating voxels (default: ``10``). min_percentile: minimal percentile (default: ``0.5``). max_percentile: maximal percentile (default: ``99.5``). """ all_intensities = [] for data in self.data_loader: if self.image_key and self.label_key: image, label = data[self.image_key], data[self.label_key] else: image, label = data image, *_ = convert_data_type(data=image, output_type=torch.Tensor) label, *_ = convert_data_type(data=label, output_type=torch.Tensor) intensities = image[torch.where(label > foreground_threshold)].tolist() if sampling_flag: intensities = intensities[::interval] all_intensities.append(intensities) all_intensities = list(chain(*all_intensities)) self.data_min_percentile, self.data_max_percentile = np.percentile( all_intensities, [min_percentile, max_percentile] ) self.data_median = np.median(all_intensities)