Sitk loader
sitk_loader(sample, path_imagedir, image_format=None, grayscale=True, resampling=(1.0, 1.0, 1.0), outside_value=0, **kwargs)
ยค
SimpleITK Loader for loading of CT/MRI scans in NIfTI (nii) or Metafile (mha) format within the AUCMEDI pipeline.
The SimpleITK Loader is an IO_loader function, which have to be passed to the DataGenerator.
This loader is intended to load only 3D volumes with annotated voxel spacings.
By default, volumes are normalized to voxel spacing 1.0 x 1.0 x 1.0.
You can define a custom voxel spacing for the loader, by passing a tuple of spacings as parameter 'resampling'.
Info
The SimpleITK Loader utilizes SimpleITK for sample loading:
https://simpleitk.readthedocs.io/en/master/IO.html
Example
# Import required libraries
from aucmedi import *
from aucmedi.data_processing.io_loader import sitk_loader
# Initialize input data reader
ds = input_interface(interface="csv",
path_imagedir="dataset/nii_files/",
path_data="dataset/annotations.csv",
ohe=False, col_sample="ID", col_class="diagnosis")
(samples, class_ohe, nclasses, class_names, image_format) = ds
# Initialize DataGenerator with sitk_loader
data_gen = DataGenerator(samples, "dataset/nii_files/", labels=class_ohe,
image_format=image_format, resize=None,
grayscale=True, resampling=(2.10, 1.48, 1.48),
loader=sitk_loader)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sample |
str
|
Sample name/index of an image. |
required |
path_imagedir |
str
|
Path to the directory containing the images. |
required |
image_format |
str
|
Image format to add at the end of the sample index for image loading. |
None
|
grayscale |
bool
|
Boolean, whether images are grayscale or RGB. |
True
|
resampling |
tuple of float
|
Tuple of 3x floats with z,y,x mapping encoding voxel spacing.
If passing |
(1.0, 1.0, 1.0)
|
**kwargs |
dict
|
Additional parameters for the sample loader. |
{}
|
Source code in aucmedi/data_processing/io_loader/sitk_loader.py
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 |
|