Skip to content
Snippets Groups Projects
Commit cf1b038a authored by Evan Edmond's avatar Evan Edmond
Browse files

ENH: accept pathlib objects for Image

parent 35fae740
No related branches found
No related tags found
No related merge requests found
...@@ -46,6 +46,8 @@ import numpy as np ...@@ -46,6 +46,8 @@ import numpy as np
import nibabel as nib import nibabel as nib
import nibabel.fileslice as fileslice import nibabel.fileslice as fileslice
from pathlib import Path
import fsl.utils.meta as meta import fsl.utils.meta as meta
import fsl.transform.affine as affine import fsl.transform.affine as affine
import fsl.utils.notifier as notifier import fsl.utils.notifier as notifier
...@@ -1088,6 +1090,11 @@ class Image(Nifti): ...@@ -1088,6 +1090,11 @@ class Image(Nifti):
nibImage = nib.load(image, **kwargs) nibImage = nib.load(image, **kwargs)
dataSource = image dataSource = image
saved = True saved = True
# The image parameter may be the name of an image file
if isinstance(image, Path):
nibImage = nib.load(image, **kwargs)
dataSource = str(image)
saved = True
# Or a numpy array - we wrap it in a nibabel image, # Or a numpy array - we wrap it in a nibabel image,
# with an identity transformation (each voxel maps # with an identity transformation (each voxel maps
...@@ -1140,6 +1147,8 @@ class Image(Nifti): ...@@ -1140,6 +1147,8 @@ class Image(Nifti):
# from disk, use the file name. # from disk, use the file name.
if isinstance(image, six.string_types): if isinstance(image, six.string_types):
name = removeExt(op.basename(image)) name = removeExt(op.basename(image))
if isinstance(image, Path):
name = image.name
# Or the image was created from a numpy array # Or the image was created from a numpy array
elif isinstance(image, np.ndarray): elif isinstance(image, np.ndarray):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment