-
Notifications
You must be signed in to change notification settings - Fork 2
Motivations
Sebastiano Ferraris edited this page Aug 11, 2018
·
11 revisions
A generic algorithm written to manipulate a medical image saved in nifti format usually involves these steps:
- loading the image with nibabel
- extract the header or the data
- apply the algorithm
- create a new instance of the modified nifti image
- save the modified image
LABelsToolkit is aimed at reducing these steps in a single command, allowing to have as input and output directly the path to the input and output image.
- The underpinning algorithm is written (and sometimes tested) for arrays-data structure.
- The facade access the underpinning algorithm providing directly the path to the input image.