Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
FSL
fslpy
Commits
4d06ec8e
Commit
4d06ec8e
authored
May 08, 2019
by
Paul McCarthy
🚵
Browse files
TEST: Extra test for resample_image script
parent
aafa8133
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/test_scripts/test_resample_image.py
View file @
4d06ec8e
...
...
@@ -3,6 +3,8 @@
import
numpy
as
np
import
pytest
import
fsl.scripts.resample_image
as
resample_image
...
...
@@ -67,3 +69,13 @@ def test_resample_image_ref():
assert
np
.
all
(
np
.
isclose
(
res
.
shape
,
(
20
,
20
,
20
)))
assert
np
.
all
(
np
.
isclose
(
res
.
pixdim
,
(
0.5
,
0.5
,
0.5
)))
assert
np
.
all
(
np
.
isclose
(
res
.
voxToWorldMat
,
expv2w
))
def
test_resample_image_bad_options
():
with
tempdir
():
img
=
Image
(
make_random_image
(
'image.nii.gz'
,
dims
=
(
10
,
10
,
10
)))
with
pytest
.
raises
(
SystemExit
)
as
e
:
resample_image
.
main
(
'image resampled -d 0.5 0.5 0.5 '
'-s 20 20 20'
.
split
())
assert
e
.
value
.
code
!=
0
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment