Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michiel Cottaar
fslpy
Commits
2e47fd50
Commit
2e47fd50
authored
4 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
TEST: deprecated module
parent
45fbd5c2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_scripts/test_resample_image.py
+9
-9
9 additions, 9 deletions
tests/test_scripts/test_resample_image.py
with
9 additions
and
9 deletions
tests/test_scripts/test_resample_image.py
+
9
−
9
View file @
2e47fd50
...
...
@@ -8,7 +8,7 @@ import pytest
import
fsl.scripts.resample_image
as
resample_image
import
fsl.
utils.
transform
as
transform
import
fsl.transform
.affine
as
affine
from
fsl.utils.tempdir
import
tempdir
from
fsl.data.image
import
Image
...
...
@@ -22,22 +22,22 @@ def test_resample_image_shape():
resample_image
.
main
(
'
image resampled -s 20,20,20
'
.
split
())
res
=
Image
(
'
resampled
'
)
expv2w
=
transform
.
concat
(
expv2w
=
affine
.
concat
(
img
.
voxToWorldMat
,
transform
.
scaleOffsetXform
([
0.5
,
0.5
,
0.5
],
0
))
affine
.
scaleOffsetXform
([
0.5
,
0.5
,
0.5
],
0
))
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
))
assert
np
.
all
(
np
.
isclose
(
np
.
array
(
transform
.
axisBounds
(
res
.
shape
,
res
.
voxToWorldMat
))
-
0.25
,
transform
.
axisBounds
(
img
.
shape
,
img
.
voxToWorldMat
)))
np
.
array
(
affine
.
axisBounds
(
res
.
shape
,
res
.
voxToWorldMat
))
-
0.25
,
affine
.
axisBounds
(
img
.
shape
,
img
.
voxToWorldMat
)))
resample_image
.
main
(
'
image resampled -s 20,20,20 -o corner
'
.
split
())
res
=
Image
(
'
resampled
'
)
assert
np
.
all
(
np
.
isclose
(
transform
.
axisBounds
(
res
.
shape
,
res
.
voxToWorldMat
),
transform
.
axisBounds
(
img
.
shape
,
img
.
voxToWorldMat
)))
affine
.
axisBounds
(
res
.
shape
,
res
.
voxToWorldMat
),
affine
.
axisBounds
(
img
.
shape
,
img
.
voxToWorldMat
)))
def
test_resample_image_shape_4D
():
...
...
@@ -65,9 +65,9 @@ def test_resample_image_dim():
resample_image
.
main
(
'
image resampled -d 0.5,0.5,0.5
'
.
split
())
res
=
Image
(
'
resampled
'
)
expv2w
=
transform
.
concat
(
expv2w
=
affine
.
concat
(
img
.
voxToWorldMat
,
transform
.
scaleOffsetXform
([
0.5
,
0.5
,
0.5
],
0
))
affine
.
scaleOffsetXform
([
0.5
,
0.5
,
0.5
],
0
))
assert
np
.
all
(
np
.
isclose
(
res
.
shape
,
(
20
,
20
,
20
)))
assert
np
.
all
(
np
.
isclose
(
res
.
pixdim
,
(
0.5
,
0.5
,
0.5
)))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment