pysap.base.loaders.nifti#

class NIFTI[source]#

Bases: pysap.base.loaders.loader_base.LoaderBase

Define the Nifti loader.

allowed_extensions = ['.nii', '.nii.gz']#
load(path)[source]#

A method that load the image data and associated metadata.

Parameters

path (str) – the path to the image to be loaded.

Returns

image – the loaded image.

Return type

Image

save(image, outpath)[source]#

A method that save the image data and associated metadata.

Parameters
  • image (Image) – the image to be saved.

  • outpath (str) – the path where the the image will be saved.