From 561e33e152de91eb9b96998fba522fd64cb88e14 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauld.mccarthy@gmail.com> Date: Mon, 15 May 2017 15:39:14 +0100 Subject: [PATCH] Image class has ability to pass args through to nibabel.load function. --- fsl/data/image.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/fsl/data/image.py b/fsl/data/image.py index f44c3bec5..e88aba1b1 100644 --- a/fsl/data/image.py +++ b/fsl/data/image.py @@ -662,7 +662,8 @@ class Image(Nifti): loadData=True, calcRange=True, indexed=False, - threaded=False): + threaded=False, + **kwargs): """Create an ``Image`` object with the given image data or file name. :arg image: A string containing the name of an image file to load, @@ -706,6 +707,9 @@ class Image(Nifti): :arg threaded: If ``True``, the :class:`.ImageWrapper` will use a separate thread for data range calculation. Defaults to ``False``. Ignored if ``loadData`` is ``True``. + + All other arguments are passed through to the ``nibabel.load`` function + (if it is called). """ nibImage = None @@ -735,7 +739,7 @@ class Image(Nifti): # Otherwise we let nibabel # manage the file reference(s) else: - nibImage = nib.load(image) + nibImage = nib.load(image, **kwargs) dataSource = image -- GitLab