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
Christoph Arthofer
fslpy
Commits
dd48efe0
Commit
dd48efe0
authored
Mar 24, 2020
by
Paul McCarthy
🚵
Browse files
Merge branch 'enh/nonlinear' into 'master'
Enh/nonlinear See merge request fsl/fslpy!212
parents
0e5e0aa7
ff0a371b
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.rst
View file @
dd48efe0
...
...
@@ -62,6 +62,8 @@ Fixed
split.
* Fixed some bugs in the :func:`.fslsub.info` and :func:`.fslinfo.wait`
functions.
* Fixed the :func:`.DeformationField.transform` method so it works with
a single set of coordinates.
2.8.4 (Monday 2nd March 2020)
...
...
fsl/transform/nonlinear.py
View file @
dd48efe0
...
...
@@ -251,7 +251,9 @@ class DeformationField(NonLinearTransform):
if
from_
is
None
:
from_
=
self
.
refSpace
if
to
is
None
:
to
=
self
.
srcSpace
coords
=
np
.
asanyarray
(
coords
)
coords
=
np
.
asanyarray
(
coords
)
outshape
=
coords
.
shape
coords
=
coords
.
reshape
((
-
1
,
3
))
# We may need to pre-transform the
# coordinates so they are in the
...
...
@@ -299,7 +301,7 @@ class DeformationField(NonLinearTransform):
outcoords
=
np
.
full
(
coords
.
shape
,
np
.
nan
)
outcoords
[
voxmask
]
=
disps
return
outcoords
return
outcoords
.
reshape
(
outshape
)
class
CoefficientField
(
NonLinearTransform
):
...
...
tests/test_transform/test_nonlinear.py
View file @
dd48efe0
...
...
@@ -205,6 +205,10 @@ def test_DeformationField_transform():
got
=
absfield
.
transform
(
rcoords
)
assert
np
.
all
(
np
.
isclose
(
got
,
scoords
))
# test single set of coords
got
=
absfield
.
transform
(
rcoords
[
0
])
assert
np
.
all
(
np
.
isclose
(
got
,
scoords
[
0
]))
got
=
relfield
.
transform
(
rvoxels
,
from_
=
'voxel'
,
to
=
'voxel'
)
assert
np
.
all
(
np
.
isclose
(
got
,
svoxels
))
got
=
absfield
.
transform
(
rvoxels
,
from_
=
'voxel'
,
to
=
'voxel'
)
...
...
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