Spaces:
Paused
Paused
File size: 9,964 Bytes
e3bc7f9 5eba560 4affc67 5eba560 4affc67 5eba560 4affc67 010252d 4affc67 010252d 4affc67 010252d 4affc67 7a23881 3f6023b 010252d 3f6023b 010252d 47a27e4 e3bc7f9 0fdfa6a e3bc7f9 010252d e933831 010252d e933831 790e02c 7a23881 e3bc7f9 0fdfa6a e3bc7f9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
import gradio as gr
# create nnunet input types
# run nnunet
# export
import os
import pickle
import subprocess
from pathlib import Path
from typing import Union
import numpy as np
import SimpleITK as sitk
from evalutils import SegmentationAlgorithm
from evalutils.validators import (UniqueImagesValidator,
UniquePathIndicesValidator)
from picai_baseline.nnunet.softmax_export import \
save_softmax_nifti_from_softmax
from picai_prep import atomic_image_write
from picai_prep.preprocessing import (PreprocessingSettings, Sample,
resample_to_reference_scan)
class MissingSequenceError(Exception):
"""Exception raised when a sequence is missing."""
def __init__(self, name, folder):
message = f"Could not find scan for {name} in {folder} (files: {os.listdir(folder)})"
super().__init__(message)
class MultipleScansSameSequencesError(Exception):
"""Exception raised when multiple scans of the same sequences are provided."""
def __init__(self, name, folder):
message = f"Found multiple scans for {name} in {folder} (files: {os.listdir(folder)})"
super().__init__(message)
def convert_to_original_extent(pred: np.ndarray, pkl_path: Union[Path, str], dst_path: Union[Path, str]):
# convert to nnUNet's internal softmax format
pred = np.array([1-pred, pred])
# read physical properties of current case
with open(pkl_path, "rb") as fp:
properties = pickle.load(fp)
# let nnUNet resample to original physical space
save_softmax_nifti_from_softmax(
segmentation_softmax=pred,
out_fname=str(dst_path),
properties_dict=properties,
)
def strip_metadata(img: sitk.Image) -> None:
for key in img.GetMetaDataKeys():
img.EraseMetaData(key)
def overwrite_affine(fixed_img: sitk.Image, moving_img: sitk.Image) -> sitk.Image:
moving_img.SetOrigin(fixed_img.GetOrigin())
moving_img.SetDirection(fixed_img.GetDirection())
moving_img.SetSpacing(fixed_img.GetSpacing())
return moving_img
class ProstateSegmentationAlgorithm(SegmentationAlgorithm):
"""
Wrapper to deploy trained prostate segmentation nnU-Net model from
https://github.com/DIAGNijmegen/picai_baseline as a
grand-challenge.org algorithm.
"""
def __init__(self):
super().__init__(
validators=dict(
input_image=(
UniqueImagesValidator(),
UniquePathIndicesValidator(),
)
),
)
# input / output paths for algorithm
self.input_dirs = [
"./input/images/transverse-t2-prostate-mri"
]
self.scan_paths = []
self.prostate_segmentation_path_pz = Path("./output/images/softmax-prostate-peripheral-zone-segmentation/prostate_gland_sm_pz.mha")
self.prostate_segmentation_path_tz = Path("./output/images/softmax-prostate-central-gland-segmentation/prostate_gland_sm_tz.mha")
self.prostate_segmentation_path = Path("./output/images/prostate-zonal-segmentation/prostate_gland.mha")
# input / output paths for nnUNet
self.nnunet_inp_dir = Path("./nnunet/input")
self.nnunet_out_dir = Path("./nnunet/output")
self.nnunet_results = Path("./results")
# ensure required folders exist
self.nnunet_inp_dir.mkdir(exist_ok=True, parents=True)
self.nnunet_out_dir.mkdir(exist_ok=True, parents=True)
self.prostate_segmentation_path_pz.parent.mkdir(exist_ok=True, parents=True)
# input validation for multiple inputs
scan_glob_format = "*.mha"
for folder in self.input_dirs:
file_paths = list(Path(folder).glob(scan_glob_format))
if len(file_paths) == 0:
raise MissingSequenceError(name=folder.split("/")[-1], folder=folder)
elif len(file_paths) >= 2:
raise MultipleScansSameSequencesError(name=folder.split("/")[-1], folder=folder)
else:
# append scan path to algorithm input paths
self.scan_paths += [file_paths[0]]
def preprocess_input(self):
"""Preprocess input images to nnUNet Raw Data Archive format"""
# set up Sample
sample = Sample(
scans=[
sitk.ReadImage(str(path))
for path in [self.scan_paths[0]]
],
settings=PreprocessingSettings(
physical_size=[81.0, 192.0, 192.0],
crop_only=True
)
)
# perform preprocessing
sample.preprocess()
# write preprocessed scans to nnUNet input directory
for i, scan in enumerate(sample.scans):
path = self.nnunet_inp_dir / f"scan_{i:04d}.nii.gz"
atomic_image_write(scan, path)
# Note: need to overwrite process because of flexible inputs, which requires custom data loading
def process(self):
"""
Load bpMRI scans and segment the prostate glands
"""
# perform preprocessing
self.preprocess_input()
# perform inference using nnUNet
self.predict(
task="Task848_experiment48",
trainer="nnUNetTrainerV2_MMS",
checkpoint="model_best",
folds="0"
)
pred_path_prostate = str(self.nnunet_out_dir / "scan.npz")
sm_arr = np.load(pred_path_prostate)['softmax']
pz_arr = np.array(sm_arr[1, :, :, :]).astype('float32')
tz_arr = np.array(sm_arr[2, :, :, :]).astype('float32')
# read postprocessed prediction
pred_path = str(self.nnunet_out_dir / "scan.nii.gz")
pred_postprocessed: sitk.Image = sitk.ReadImage(pred_path)
# remove metadata to get rid of SimpleITK warning
strip_metadata(pred_postprocessed)
# save postprocessed prediction to output
atomic_image_write(pred_postprocessed, self.prostate_segmentation_path, mkdir=True)
for pred, save_path in [
(pz_arr, self.prostate_segmentation_path_pz),
(tz_arr, self.prostate_segmentation_path_tz),
]:
# the prediction is currently at the size and location of the nnU-Net preprocessed
# scan, so we need to convert it to the original extent before we continue
convert_to_original_extent(
pred=pred,
pkl_path=self.nnunet_out_dir / "scan.pkl",
dst_path=self.nnunet_out_dir / "softmax.nii.gz",
)
# now each voxel in softmax.nii.gz corresponds to the same voxel in the reference scan
pred = sitk.ReadImage(str(self.nnunet_out_dir / "softmax.nii.gz"))
# convert prediction to a SimpleITK image and infuse the physical metadata of the reference scan
reference_scan_original_path = str(self.scan_paths[0])
reference_scan = sitk.ReadImage(reference_scan_original_path)
pred = resample_to_reference_scan(pred, reference_scan_original=reference_scan)
# clip small values to 0 to save disk space
arr = sitk.GetArrayFromImage(pred)
arr[arr < 1e-3] = 0
pred_clipped = sitk.GetImageFromArray(arr)
pred_clipped.CopyInformation(pred)
# remove metadata to get rid of SimpleITK warning
strip_metadata(pred_clipped)
# save prediction to output folder
atomic_image_write(pred_clipped, save_path, mkdir=True)
def predict(self, task, trainer="nnUNetTrainerV2", network="3d_fullres",
checkpoint="model_final_checkpoint", folds="0,1,2,3,4", store_probability_maps=True,
disable_augmentation=False, disable_patch_overlap=False):
"""
Use trained nnUNet network to generate segmentation masks
"""
# Set environment variables
os.environ['RESULTS_FOLDER'] = str(self.nnunet_results)
# Run prediction script
cmd = [
'nnUNet_predict',
'-t', task,
'-i', str(self.nnunet_inp_dir),
'-o', str(self.nnunet_out_dir),
'-m', network,
'-tr', trainer,
'--num_threads_preprocessing', '2',
'--num_threads_nifti_save', '1'
]
if folds:
cmd.append('-f')
cmd.extend(folds.split(','))
if checkpoint:
cmd.append('-chk')
cmd.append(checkpoint)
if store_probability_maps:
cmd.append('--save_npz')
if disable_augmentation:
cmd.append('--disable_tta')
if disable_patch_overlap:
cmd.extend(['--step_size', '1'])
subprocess.check_call(cmd)
def predict(input_file):
print("Making prediction")
image = sitk.ReadImage(input_file)
sitk.WriteImage(image, "./input/images/transverse-t2-prostate-mri/1009_2222_t2w.mha")
ProstateSegmentationAlgorithm().process()
return (
"./output/images/softmax-prostate-peripheral-zone-segmentation/prostate_gland_sm_pz.mha",
"./output/images/softmax-prostate-central-gland-segmentation/prostate_gland_sm_tz.mha",
"./output/images/prostate-zonal-segmentation/prostate_gland.mha",
)
print("Starting interface")
demo = gr.Interface(
fn=predict,
inputs=gr.File(label="input T2 image (3d)", file_count="single", file_types=[".mha", ".nii.gz", ".nii"]),
outputs=[
gr.File(label="softmax-prostate-peripheral-zone-segmentation/prostate_gland_sm_pz"),
gr.File(label="softmax-prostate-central-gland-segmentation/prostate_gland_sm_tz"),
gr.File(label="prostate-zonal-segmentation/prostate_gland"),
],
cache_examples=False,
# outputs=gr.Label(num_top_classes=3),
)
print("Launching interface")
demo.launch(server_name="0.0.0.0", server_port=7860)
|