Source code for tiatoolbox.utils.misc

# ***** BEGIN GPL LICENSE BLOCK *****
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# The Original Code is Copyright (C) 2021, TIA Centre, University of Warwick
# All rights reserved.
# ***** END GPL LICENSE BLOCK *****

"""Miscellaneous small functions repeatedly used in tiatoolbox."""
import copy
import json
import os
import pathlib
import zipfile
from typing import Union

import cv2
import numpy as np
import pandas as pd
import requests
import torch
import yaml
from skimage import exposure

from tiatoolbox.utils.exceptions import FileNotSupported


[docs]def split_path_name_ext(full_path): """Split path of a file to directory path, file name and extensions. Args: full_path (str or pathlib.Path): Path to a file Returns: tuple: Three parts of the input file path: - :py:obj:`pathlib.Path` - Parent directory path - :py:obj:`str` - File name - :py:obj:`list(str)` - File extensions Examples: >>> from tiatoolbox import utils >>> dir_path, file_name, extensions = ... utils.misc.split_path_name_ext(full_path) """ input_path = pathlib.Path(full_path) return input_path.parent.absolute(), input_path.name, input_path.suffixes
[docs]def grab_files_from_dir(input_path, file_types=("*.jpg", "*.png", "*.tif")): """Grab file paths specified by file extensions. Args: input_path (str or pathlib.Path): Path to the directory where files need to be searched. file_types (str or tuple(str)): File types (extensions) to be searched. Returns: list: File paths as a python list. It has been sorted to ensure same ordering across platforms. Examples: >>> from tiatoolbox import utils >>> file_types = ("*.ndpi", "*.svs", "*.mrxs") >>> files_all = utils.misc.grab_files_from_dir(input_path, ... file_types=file_types) """ input_path = pathlib.Path(input_path) if isinstance(file_types, str): if len(file_types.split(",")) > 1: file_types = tuple(file_types.replace(" ", "").split(",")) else: file_types = (file_types,) files_grabbed = [] for files in file_types: files_grabbed.extend(input_path.glob(files)) # Ensure same ordering files_grabbed.sort() return list(files_grabbed)
[docs]def save_yaml(input_dict, output_path="output.yaml"): """Save dictionary as yaml. Args: input_dict (dict): A variable of type 'dict' output_path (str or pathlib.Path): Path to save the output file Returns: Examples: >>> from tiatoolbox import utils >>> input_dict = {'hello': 'Hello World!'} >>> utils.misc.save_yaml(input_dict, './hello.yaml') """ with open(str(pathlib.Path(output_path)), "w") as yaml_file: yaml.dump(input_dict, yaml_file)
[docs]def imwrite(image_path, img): """Write numpy array to an image. Args: image_path (str or pathlib.Path): file path (including extension) to save image img (:class:`numpy.ndarray`): image array of dtype uint8, MxNx3 Returns: Examples: >>> from tiatoolbox import utils >>> import numpy as np >>> utils.misc.imwrite('BlankImage.jpg', ... np.ones([100, 100, 3]).astype('uint8')*255) """ if isinstance(image_path, pathlib.Path): image_path = str(image_path) cv2.imwrite(image_path, cv2.cvtColor(img, cv2.COLOR_RGB2BGR))
[docs]def imread(image_path, as_uint8=True): """Read an image as numpy array. Args: image_path (str or pathlib.Path): File path (including extension) to read image. as_uint8 (bool): Read an image in uint8 format. Returns: img (:class:`numpy.ndarray`): Image array of dtype uint8, MxNx3. Examples: >>> from tiatoolbox import utils >>> img = utils.misc.imread('ImagePath.jpg') """ if isinstance(image_path, pathlib.Path): image_path = str(image_path) if pathlib.Path(image_path).suffix == ".npy": image = np.load(image_path) else: image = cv2.imread(image_path) image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB) if as_uint8: return image.astype(np.uint8) return image
[docs]def load_stain_matrix(stain_matrix_input): """Load a stain matrix as a numpy array. Args: stain_matrix_input (ndarray or str, pathlib.Path): either a 2x3 / 3x3 numpy array or a path to a saved .npy / .csv file. If using a .csv file, there should be no column headers provided Returns: stain_matrix (:class:`numpy.ndarray`): the loaded stain matrix. Examples: >>> from tiatoolbox import utils >>> sm = utils.misc.load_stain_matrix(stain_matrix_input) """ if isinstance(stain_matrix_input, (str, pathlib.Path)): _, __, suffixes = split_path_name_ext(stain_matrix_input) if suffixes[-1] not in [".csv", ".npy"]: raise FileNotSupported( "If supplying a path to a stain matrix, use either a \ npy or a csv file" ) if suffixes[-1] == ".csv": return pd.read_csv(stain_matrix_input).to_numpy() if suffixes[-1] == ".npy": return np.load(str(stain_matrix_input)) if isinstance(stain_matrix_input, np.ndarray): return stain_matrix_input raise TypeError( "Stain_matrix must be either a path to npy/csv file or a numpy array" )
[docs]def get_luminosity_tissue_mask(img, threshold): """Get tissue mask based on the luminosity of the input image. Args: img (:class:`numpy.ndarray`): input image used to obtain tissue mask. threshold (float): luminosity threshold used to determine tissue area. Returns: tissue_mask (:class:`numpy.ndarray`): binary tissue mask. Examples: >>> from tiatoolbox import utils >>> tissue_mask = utils.misc.get_luminosity_tissue_mask(img, threshold=0.8) """ img = img.astype("uint8") # ensure input image is uint8 img = contrast_enhancer(img, low_p=2, high_p=98) # Contrast enhancement img_lab = cv2.cvtColor(img, cv2.COLOR_RGB2LAB) l_lab = img_lab[:, :, 0] / 255.0 # Convert to range [0,1]. tissue_mask = l_lab < threshold # check it's not empty if tissue_mask.sum() == 0: raise ValueError("Empty tissue mask computed") return tissue_mask
def mpp2common_objective_power( mpp, common_powers=(1, 1.25, 2, 2.5, 4, 5, 10, 20, 40, 60, 90, 100) ): """Approximate (commonly used value) of objective power from mpp. Uses :func:`mpp2objective_power` to estimate and then rounds to the nearest value in `common_powers`. Args: mpp (float or tuple(float)): Microns per-pixel. common_powers (tuple or list of float): A sequence of objective power values to round to. Defaults to (1, 1.25, 2, 2.5, 4, 5, 10, 20, 40, 60, 90, 100). Returns: float: Objective power approximation. Examples: >>> mpp2common_objective_power(0.253) array(40) >>> mpp2common_objective_power( ... [0.253, 0.478], ... common_powers=(10, 20, 40), ... ) array([40, 20]) """ op = mpp2objective_power(mpp) distances = [np.abs(op - power) for power in common_powers] return common_powers[np.argmin(distances)] mpp2common_objective_power = np.vectorize( mpp2common_objective_power, excluded={"common_powers"} ) @np.vectorize def objective_power2mpp(objective_power): r"""Approximate mpp from objective power. The formula used for estimation is :math:`power = \frac{10}{mpp}`. This is a self-inverse function and therefore :func:`mpp2objective_power` is simply an alias to this function. Note that this function is wrapped in :class:`numpy.vectorize`. Args: objective_power (float or tuple(float)): Objective power. Returns: numpy.ndarray: Microns per-pixel (MPP) approximations. Examples: >>> objective_power2mpp(40) array(0.25) >>> objective_power2mpp([40, 20, 10]) array([0.25, 0.5, 1.]) """ return 10 / float(objective_power) @np.vectorize def mpp2objective_power(mpp): """Approximate objective_power from mpp. Alias to :func:`objective_power2mpp` as it is a self-inverse function. Args: mpp (float or tuple(float)): Microns per-pixel. Returns: :class:`numpy.ndarray`: Objective power approximations. Examples: >>> mpp2objective_power(0.25) array(40.) >>> mpp2objective_power([0.25, 0.5, 1.0]) array([40., 20., 10.]) >>> mpp2objective_power(0.253) array(39.5256917) """ return objective_power2mpp(mpp)
[docs]def contrast_enhancer(img, low_p=2, high_p=98): """Enhancing contrast of the input image using intensity adjustment. This method uses both image low and high percentiles. Args: img (:class:`numpy.ndarray`): input image used to obtain tissue mask. Image should be uint8. low_p (scalar): low percentile of image values to be saturated to 0. high_p (scalar): high percentile of image values to be saturated to 255. high_p should always be greater than low_p. Returns: img (:class:`numpy.ndarray`): Image (uint8) with contrast enhanced. Raises: AssertionError: Internal errors due to invalid img type. Examples: >>> from tiatoolbox import utils >>> img = utils.misc.contrast_enhancer(img, low_p=2, high_p=98) """ # check if image is not uint8 if not img.dtype == np.uint8: raise AssertionError("Image should be uint8.") img_out = img.copy() p_low, p_high = np.percentile(img_out, (low_p, high_p)) if p_low >= p_high: p_low, p_high = np.min(img_out), np.max(img_out) if p_high > p_low: img_out = exposure.rescale_intensity( img_out, in_range=(p_low, p_high), out_range=(0.0, 255.0) ) return np.uint8(img_out)
def __numpy_array_to_table(input_table): """Checks numpy array to be 2 or 3 columns. If it has two columns then class should be assign None. Args: input_table (np.ndarray): input table. Returns: table (:class:`pd.DataFrame`): Pandas DataFrame with desired features. Raises: ValueError: If the number of columns is not equal to 2 or 3. """ if input_table.shape[1] == 2: out_table = pd.DataFrame(input_table, columns=["x", "y"]) out_table["class"] = None return out_table if input_table.shape[1] == 3: return pd.DataFrame(input_table, columns=["x", "y", "class"]) raise ValueError("numpy table should be of format `x, y` or " "`x, y, class`") def __assign_unknown_class(input_table): """Creates a column and assigns None if class is unknown. Args: input_table (np.ndarray or pd.DataFrame): input table. Returns: table (:class:`pd.DataFrame`): Pandas DataFrame with desired features. Raises: ValueError: If the number of columns is not equal to 2 or 3. """ if input_table.shape[1] not in [2, 3]: raise ValueError("Input table must have 2 or 3 columns.") if input_table.shape[1] == 2: input_table["class"] = None return input_table
[docs]def read_locations(input_table): """Read annotations as pandas DataFrame. Args: input_table (str or pathlib.Path or :class:`numpy.ndarray` or :class:`pandas.DataFrame`): path to csv, npy or json. Input can also be a :class:`numpy.ndarray` or :class:`pandas.DataFrame`. First column in the table represents x position, second column represents y position. The third column represents the class. If the table has headers, the header should be x, y & class. Json should have `x`, `y` and `class` fields. Returns: pd.DataFrame: DataFrame with x, y location and class type. Raises: FileNotSupported: If the path to input table is not of supported type. Examples: >>> from tiatoolbox.utils.misc import read_locations >>> labels = read_locations('./annotations.csv') """ if isinstance(input_table, (str, pathlib.Path)): _, _, suffixes = split_path_name_ext(input_table) if suffixes[-1] == ".npy": out_table = np.load(input_table) return __numpy_array_to_table(out_table) if suffixes[-1] == ".csv": out_table = pd.read_csv(input_table, sep=None, engine="python") if "x" not in out_table.columns: out_table = pd.read_csv( input_table, header=None, names=["x", "y", "class"], sep=None, engine="python", ) return __assign_unknown_class(out_table) if suffixes[-1] == ".json": out_table = pd.read_json(input_table) return __assign_unknown_class(out_table) raise FileNotSupported("File type not supported.") if isinstance(input_table, np.ndarray): return __numpy_array_to_table(input_table) if isinstance(input_table, pd.DataFrame): return __assign_unknown_class(input_table) raise TypeError("Please input correct image path or an ndarray image.")
@np.vectorize def conv_out_size(in_size, kernel_size=1, padding=0, stride=1): r"""Calculate convolution output size. This is a numpy vectorised function. .. math:: \begin{split} n_{out} &= \bigg\lfloor {{\frac{n_{in} +2p - k}{s}}} \bigg\rfloor + 1 \\ n_{in} &: \text{Number of input features} \\ n_{out} &: \text{Number of output features} \\ p &: \text{Padding size} \\ k &: \text{Kernel size} \\ s &: \text{Stride size} \\ \end{split} Args: in_size (int): Input size / number of input features. kernel_size (int): Kernel size. padding (int): Kernel size. stride (int): Stride size. Returns: int: Output size / number of features. Examples: >>> from tiatoolbox import utils >>> import numpy as np >>> utils.misc.conv_out_size(100, 3) >>> np.array(98) >>> utils.misc.conv_out_size(99, kernel_size=3, stride=2) >>> np.array(98) >>> utils.misc.conv_out_size((100, 100), kernel_size=3, stride=2) >>> np.array([49, 49]) """ return (np.floor((in_size - kernel_size + (2 * padding)) / stride) + 1).astype(int)
[docs]def parse_cv2_interpolaton(interpolation: Union[str, int]) -> int: """Convert a string to a OpenCV (cv2) interpolation enum. Interpolation modes: - nearest - linear - area - cubic - lanczos Valid integer values for cv2 interpolation enums are passed through. See the `cv::InterpolationFlags`_ documentation for more on cv2 (OpenCV) interpolation modes. .. _cv::InterpolationFlags: https://docs.opencv.org/4.0.0/da/d54/group__imgproc__transform.html#ga5bb5a1fea74ea38e1a5445ca803ff121 Args: interpolation (Union[str, int]): Interpolation mode string. Possible values are: nearest, linear, cubic, lanczos, area. Raises: ValueError: Invalid interpolation mode. Returns: int: OpenCV (cv2) interpolation enum. """ if isinstance(interpolation, str): interpolation = interpolation.lower() if interpolation in ["nearest", cv2.INTER_NEAREST]: return cv2.INTER_NEAREST if interpolation in ["area", cv2.INTER_AREA]: return cv2.INTER_AREA if interpolation in ["linear", cv2.INTER_LINEAR]: return cv2.INTER_LINEAR if interpolation in ["cubic", cv2.INTER_CUBIC]: return cv2.INTER_CUBIC if interpolation in ["lanczos", cv2.INTER_LANCZOS4]: return cv2.INTER_LANCZOS4 raise ValueError("Invalid interpolation mode.")
[docs]def assert_dtype_int(input_var, message="Input must be integer."): """Generate error if dtype is not int. Args: input_var (ndarray): input variable to be tested. message (str): Error message to be displayed. Returns: Generates an AssertionError message if input is not an int. """ if not np.issubdtype(np.array(input_var).dtype, np.integer): raise AssertionError(message)
[docs]def download_data(url, save_path, overwrite=False): """Download data from a given URL to location. Can overwrite data if demanded else no action is taken Args: url (path): URL from where to download the data. save_path (str): Location to unzip the data. overwrite (bool): True to force overwriting of existing data, default=False """ print(f"Download from {url}") print(f"Save to {save_path}") save_dir = pathlib.Path(save_path).parent if not os.path.exists(save_dir): os.makedirs(save_dir) if not overwrite and os.path.exists(save_path): return r = requests.get(url) request_response = requests.head(url) status_code = request_response.status_code url_exists = status_code == 200 if not url_exists: raise ConnectionError(f"Could not find URL at {url}") with open(save_path, "wb") as f: f.write(r.content)
[docs]def unzip_data(zip_path, save_path, del_zip=True): """Extract data from zip file. Args: zip_path (str): Path where the zip file is located. save_path (str): Path where to save extracted files. del_zip (bool): Whether to delete initial zip file after extraction. """ # Extract data from zip file with zipfile.ZipFile(zip_path, "r") as zip_ref: zip_ref.extractall(save_path) if del_zip: # Remove zip file os.remove(zip_path)
def __walk_list_dict(in_list_dict): """Recursive walk and jsonify in place. Args: in_list_dict (list or dict): input list or a dictionary. Returns: list or dict """ if isinstance(in_list_dict, dict): __walk_dict(in_list_dict) elif isinstance(in_list_dict, list): __walk_list(in_list_dict) elif isinstance(in_list_dict, np.ndarray): in_list_dict = in_list_dict.tolist() __walk_list(in_list_dict) elif isinstance(in_list_dict, np.generic): in_list_dict = in_list_dict.item() elif in_list_dict is not None and not isinstance( in_list_dict, (int, float, str, bool) ): raise ValueError( f"Value type `{type(in_list_dict)}` `{in_list_dict}` is not jsonified." ) return in_list_dict def __walk_list(lst): """Recursive walk and jsonify a list in place. Args: lst (list): input list. """ for i, v in enumerate(lst): lst[i] = __walk_list_dict(v) def __walk_dict(dct): """Recursive walk and jsonify a dictionary in place. Args: dct (dict): input dictionary. """ for k, v in dct.items(): if not isinstance(k, (int, float, str, bool)): raise ValueError(f"Key type `{type(k)}` `{k}` is not jsonified.") dct[k] = __walk_list_dict(v)
[docs]def save_as_json(data, save_path): """Save data to a json file. The function will deepcopy the `data` and then jsonify the content in place. Support data types for jsonify consist of `str`, `int`, `float`, `bool` and their np.ndarray respectively. Args: data (dict or list): Input data to save. save_path (str): Output to save the json of `input`. """ shadow_data = copy.deepcopy(data) # make a copy of source input if not isinstance(shadow_data, (dict, list)): raise ValueError(f"`data` type {type(data)} is not [dict, list].") if isinstance(shadow_data, dict): __walk_dict(shadow_data) else: __walk_list(shadow_data) with open(save_path, "w") as handle: json.dump(shadow_data, handle)
[docs]def select_device(on_gpu): """Selects the appropriate device as requested. Args: on_gpu (bool): Selects gpu if True. Returns: device (str): "gpu" if on_gpu is True otherwise returns "cpu" """ if on_gpu: return "cuda" return "cpu"
[docs]def model_to(on_gpu, model): """Transfers model to cpu/gpu. Args: on_gpu (bool): Transfers model to gpu if True otherwise to cpu model (torch.nn.Module): PyTorch defined model. Returns: model (torch.nn.Module): """ if on_gpu: # DataParallel work only for cuda model = torch.nn.DataParallel(model) return model.to("cuda") return model.to("cpu")
[docs]def get_bounding_box(img): """Get bounding box coordinate information. Given an image with zero and non-zero values. This function will return the the minimal box that contains all non-zero values. Args: img (ndarray): Image to get the bounding box. Returns: bound (ndarray): Coordinates of the box in the form of [start_x, start_y, end_x, end_y]. """ rows = np.any(img, axis=1) cols = np.any(img, axis=0) rmin, rmax = np.where(rows)[0][[0, -1]] cmin, cmax = np.where(cols)[0][[0, -1]] # due to python indexing, need to add 1 to max # else accessing will be 1px in the box, not out rmax += 1 cmax += 1 return np.array([cmin, rmin, cmax, rmax])
[docs]def string_to_tuple(in_str): """Splits input string to tuple at ','. Args: in_str (str): input string. Returns: tuple (tuple of str): Returns a tuple of strings by splitting in_str at ','. """ return tuple(substring.strip() for substring in in_str.split(","))
[docs]def prepare_file_dir_cli(img_input, output_path, file_types, mode, sub_dirname): """Prepares CLI for running code on multiple files or a directory. Checks for existing directories to run tests. Converts file path to list of file paths or creates list of file paths if input is a directory. Args: img_input (str or pathlib.Path): file path to images. output_path (str or pathlib.Path): output directory path. file_types (str): file types to process using cli. mode (str): wsi or tile mode. sub_dirname (str): name of subdirectory to save output. Returns: files_all (list): list of file paths to process. output_path (pathlib.Path): updated output path. """ file_types = string_to_tuple(in_str=file_types) if isinstance(output_path, str): output_path = pathlib.Path(output_path) if not os.path.exists(img_input): raise FileNotFoundError files_all = [ img_input, ] if os.path.isdir(img_input): files_all = grab_files_from_dir(input_path=img_input, file_types=file_types) if output_path is None and mode == "save": input_dir = pathlib.Path(img_input).parent output_path = input_dir / sub_dirname if mode == "save": output_path.mkdir(parents=True, exist_ok=True) return files_all, output_path
[docs]def prepare_model_cli(img_input, output_path, masks, file_types, mode): """Prepares cli for running models. Checks for existing directories to run tests. Converts file path to list of file paths or creates list of file paths if input is a directory. Args: img_input (str or pathlib.Path): file path to images. output_path (str or pathlib.Path): output directory path. masks (str or pathlib.Path): file path to masks. file_types (str): file types to process using cli. mode (str): wsi or tile mode. Returns: files_all (list): list of file paths to process. masks_all (list): list of masks corresponding to input files. output_path (pathlib.Path): output path """ output_path = pathlib.Path(output_path) file_types = string_to_tuple(in_str=file_types) if output_path.exists(): raise FileExistsError("Path already exists.") if not os.path.exists(img_input): raise FileNotFoundError if mode not in ["wsi", "tile"]: raise ValueError("Please select wsi or tile mode.") files_all = [ img_input, ] if masks is None: masks_all = None else: masks_all = [ masks, ] if os.path.isdir(img_input): files_all = grab_files_from_dir(input_path=img_input, file_types=file_types) if os.path.isdir(str(masks)): masks_all = grab_files_from_dir(input_path=masks, file_types=("*.jpg", "*.png")) return files_all, masks_all, output_path