Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD 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
FSL
fslpy
Commits
2d642abb
Commit
2d642abb
authored
1 month ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
TEST: Replace voxToScaledVox with getAffine
parent
1f55df41
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
fsl/tests/test_image.py
+6
-6
6 additions, 6 deletions
fsl/tests/test_image.py
fsl/tests/test_transform/test_nonlinear.py
+6
-6
6 additions, 6 deletions
fsl/tests/test_transform/test_nonlinear.py
with
12 additions
and
12 deletions
fsl/tests/test_image.py
+
6
−
6
View file @
2d642abb
...
@@ -1055,11 +1055,11 @@ def _test_Image_5D(imgtype):
...
@@ -1055,11 +1055,11 @@ def _test_Image_5D(imgtype):
img
=
None
img
=
None
def
test_Image_voxTo
ScaledVox
_analyze
():
_test_Image_voxTo
ScaledVox
(
0
)
def
test_Image_voxTo
FSL
_analyze
():
_test_Image_voxTo
FSL
(
0
)
def
test_Image_voxTo
ScaledVox
_nifti1
():
_test_Image_voxTo
ScaledVox
(
1
)
def
test_Image_voxTo
FSL
_nifti1
():
_test_Image_voxTo
FSL
(
1
)
def
test_Image_voxTo
ScaledVox
_nifti2
():
_test_Image_voxTo
ScaledVox
(
2
)
def
test_Image_voxTo
FSL
_nifti2
():
_test_Image_voxTo
FSL
(
2
)
def
_test_Image_voxTo
ScaledVox
(
imgtype
):
def
_test_Image_voxTo
FSL
(
imgtype
):
dims
=
[(
10
,
10
,
10
)]
dims
=
[(
10
,
10
,
10
)]
pixdims
=
[(
-
1
,
1
,
1
),
pixdims
=
[(
-
1
,
1
,
1
),
...
@@ -1088,8 +1088,8 @@ def _test_Image_voxToScaledVox(imgtype):
...
@@ -1088,8 +1088,8 @@ def _test_Image_voxToScaledVox(imgtype):
expected
=
expect
(
imgtype
,
dim
,
pixdim
)
expected
=
expect
(
imgtype
,
dim
,
pixdim
)
invexpected
=
npla
.
inv
(
expected
)
invexpected
=
npla
.
inv
(
expected
)
assert
np
.
all
(
np
.
isclose
(
expected
,
img
.
voxToScaledVoxMat
))
assert
np
.
all
(
np
.
isclose
(
expected
,
img
.
getAffine
(
'
voxel
'
,
'
fsl
'
)
))
assert
np
.
all
(
np
.
isclose
(
invexpected
,
img
.
scaledVoxToVoxMat
))
assert
np
.
all
(
np
.
isclose
(
invexpected
,
img
.
getAffine
(
'
fsl
'
,
'
voxel
'
)
))
img
=
None
img
=
None
...
...
This diff is collapsed.
Click to expand it.
fsl/tests/test_transform/test_nonlinear.py
+
6
−
6
View file @
2d642abb
...
@@ -84,7 +84,7 @@ def _random_affine_field():
...
@@ -84,7 +84,7 @@ def _random_affine_field():
np
.
arange
(
ref
.
shape
[
2
]),
indexing
=
'
ij
'
)
np
.
arange
(
ref
.
shape
[
2
]),
indexing
=
'
ij
'
)
rvoxels
=
np
.
vstack
((
rx
.
flatten
(),
ry
.
flatten
(),
rz
.
flatten
())).
T
rvoxels
=
np
.
vstack
((
rx
.
flatten
(),
ry
.
flatten
(),
rz
.
flatten
())).
T
rcoords
=
affine
.
transform
(
rvoxels
,
ref
.
voxToScaledVoxMat
)
rcoords
=
affine
.
transform
(
rvoxels
,
ref
.
getAffine
(
'
voxel
'
,
'
fsl
'
)
)
scoords
=
affine
.
transform
(
rcoords
,
xform
)
scoords
=
affine
.
transform
(
rcoords
,
xform
)
field
=
np
.
zeros
(
list
(
ref
.
shape
[:
3
])
+
[
3
])
field
=
np
.
zeros
(
list
(
ref
.
shape
[:
3
])
+
[
3
])
...
@@ -162,7 +162,7 @@ def test_convertDeformationSpace():
...
@@ -162,7 +162,7 @@ def test_convertDeformationSpace():
np
.
random
.
randint
(
0
,
basefield
.
shape
[
1
],
5
),
np
.
random
.
randint
(
0
,
basefield
.
shape
[
1
],
5
),
np
.
random
.
randint
(
0
,
basefield
.
shape
[
2
],
5
)]
np
.
random
.
randint
(
0
,
basefield
.
shape
[
2
],
5
)]
refcoords
=
np
.
array
(
refcoords
,
dtype
=
int
).
T
refcoords
=
np
.
array
(
refcoords
,
dtype
=
int
).
T
refcoords
=
affine
.
transform
(
refcoords
,
ref
.
voxToScaledVoxMat
)
refcoords
=
affine
.
transform
(
refcoords
,
ref
.
getAffine
(
'
voxel
'
,
'
fsl
'
)
)
srccoords
=
basefield
.
transform
(
refcoords
)
srccoords
=
basefield
.
transform
(
refcoords
)
field
=
nonlinear
.
convertDeformationSpace
(
basefield
,
from_
,
to
)
field
=
nonlinear
.
convertDeformationSpace
(
basefield
,
from_
,
to
)
...
@@ -190,9 +190,9 @@ def test_DeformationField_transform():
...
@@ -190,9 +190,9 @@ def test_DeformationField_transform():
np
.
arange
(
ref
.
shape
[
1
]),
np
.
arange
(
ref
.
shape
[
1
]),
np
.
arange
(
ref
.
shape
[
2
]),
indexing
=
'
ij
'
)
np
.
arange
(
ref
.
shape
[
2
]),
indexing
=
'
ij
'
)
rvoxels
=
np
.
vstack
((
rx
.
flatten
(),
ry
.
flatten
(),
rz
.
flatten
())).
T
rvoxels
=
np
.
vstack
((
rx
.
flatten
(),
ry
.
flatten
(),
rz
.
flatten
())).
T
rcoords
=
affine
.
transform
(
rvoxels
,
ref
.
voxToScaledVoxMat
)
rcoords
=
affine
.
transform
(
rvoxels
,
ref
.
getAffine
(
'
voxel
'
,
'
fsl
'
)
)
scoords
=
affine
.
transform
(
rcoords
,
xform
)
scoords
=
affine
.
transform
(
rcoords
,
xform
)
svoxels
=
affine
.
transform
(
scoords
,
src
.
scaledVoxToVoxMat
)
svoxels
=
affine
.
transform
(
scoords
,
src
.
getAffine
(
'
fsl
'
,
'
voxel
'
)
)
absfield
=
np
.
zeros
(
list
(
ref
.
shape
[:
3
])
+
[
3
])
absfield
=
np
.
zeros
(
list
(
ref
.
shape
[:
3
])
+
[
3
])
absfield
[:]
=
scoords
.
reshape
(
*
it
.
chain
(
ref
.
shape
,
[
3
]))
absfield
[:]
=
scoords
.
reshape
(
*
it
.
chain
(
ref
.
shape
,
[
3
]))
...
@@ -217,9 +217,9 @@ def test_DeformationField_transform():
...
@@ -217,9 +217,9 @@ def test_DeformationField_transform():
# test out of bounds are returned as nan
# test out of bounds are returned as nan
rvoxels
=
np
.
array
([[
-
1
,
-
1
,
-
1
],
rvoxels
=
np
.
array
([[
-
1
,
-
1
,
-
1
],
[
0
,
0
,
0
]])
[
0
,
0
,
0
]])
rcoords
=
affine
.
transform
(
rvoxels
,
ref
.
voxToScaledVoxMat
)
rcoords
=
affine
.
transform
(
rvoxels
,
ref
.
getAffine
(
'
voxel
'
,
'
fsl
'
)
)
scoords
=
affine
.
transform
(
rcoords
,
xform
)
scoords
=
affine
.
transform
(
rcoords
,
xform
)
svoxels
=
affine
.
transform
(
scoords
,
src
.
scaledVoxToVoxMat
)
svoxels
=
affine
.
transform
(
scoords
,
src
.
getAffine
(
'
fsl
'
,
'
voxel
'
)
)
got
=
relfield
.
transform
(
rcoords
)
got
=
relfield
.
transform
(
rcoords
)
assert
np
.
all
(
np
.
isnan
(
got
[
0
,
:]))
assert
np
.
all
(
np
.
isnan
(
got
[
0
,
:]))
...
...
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