From aec049f1456653023ba1444107a0751857040e6d Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Tue, 16 Jul 2019 11:14:53 +0100 Subject: [PATCH] RF: Warn when reference and image are both >3D --- fsl/scripts/resample_image.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/fsl/scripts/resample_image.py b/fsl/scripts/resample_image.py index 37c7242bd..81b329ce4 100644 --- a/fsl/scripts/resample_image.py +++ b/fsl/scripts/resample_image.py @@ -147,6 +147,12 @@ def parseArgs(argv): args.shape = sanitiseList(parser, args.shape, args.input, 'shape') args.dim = sanitiseList(parser, args.dim, args.input, 'dim') + if (args.reference is not None) and \ + (args.input.ndim > 3) and \ + (args.reference.ndim > 3): + print('Reference and image are both >3D - only ' + 'resampling along the spatial dimensions.') + return args -- GitLab