diff --git a/fsl/utils/ensure.py b/fsl/utils/ensure.py new file mode 100644 index 0000000000000000000000000000000000000000..eb3368e4b2448bff16b052424fed64460631d389 --- /dev/null +++ b/fsl/utils/ensure.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python +# +# ensure.py - Functions which ensure things. +# +# Author: Paul McCarthy <pauldmccarthy@gmail.com> +# +"""This module contains a handful of utility functions which attempt to ensure +that some condition is met. + +.. autosummary:: + :nosignatures: + + ensureIsImage +""" + + +import six + +import nibabel as nib + + +def ensureIsImage(img): + """Ensures that the given ``img`` is an in-memory ``nibabel`` object. + """ + if isinstance(img, six.string_types): + img = nib.load(img) + return img