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
dd48efe0
Commit
dd48efe0
authored
5 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Plain Diff
Merge branch 'enh/nonlinear' into 'master'
Enh/nonlinear See merge request fsl/fslpy!212
parents
0e5e0aa7
ff0a371b
No related branches found
No related tags found
No related merge requests found
Pipeline
#5128
passed
5 years ago
Stage: test
Stage: style
Stage: doc
Stage: deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.rst
+2
-0
2 additions, 0 deletions
CHANGELOG.rst
fsl/transform/nonlinear.py
+4
-2
4 additions, 2 deletions
fsl/transform/nonlinear.py
tests/test_transform/test_nonlinear.py
+4
-0
4 additions, 0 deletions
tests/test_transform/test_nonlinear.py
with
10 additions
and
2 deletions
CHANGELOG.rst
+
2
−
0
View file @
dd48efe0
...
@@ -62,6 +62,8 @@ Fixed
...
@@ -62,6 +62,8 @@ Fixed
split.
split.
* Fixed some bugs in the :func:`.fslsub.info` and :func:`.fslinfo.wait`
* Fixed some bugs in the :func:`.fslsub.info` and :func:`.fslinfo.wait`
functions.
functions.
* Fixed the :func:`.DeformationField.transform` method so it works with
a single set of coordinates.
2.8.4 (Monday 2nd March 2020)
2.8.4 (Monday 2nd March 2020)
...
...
This diff is collapsed.
Click to expand it.
fsl/transform/nonlinear.py
+
4
−
2
View file @
dd48efe0
...
@@ -251,7 +251,9 @@ class DeformationField(NonLinearTransform):
...
@@ -251,7 +251,9 @@ class DeformationField(NonLinearTransform):
if
from_
is
None
:
from_
=
self
.
refSpace
if
from_
is
None
:
from_
=
self
.
refSpace
if
to
is
None
:
to
=
self
.
srcSpace
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
# We may need to pre-transform the
# coordinates so they are in the
# coordinates so they are in the
...
@@ -299,7 +301,7 @@ class DeformationField(NonLinearTransform):
...
@@ -299,7 +301,7 @@ class DeformationField(NonLinearTransform):
outcoords
=
np
.
full
(
coords
.
shape
,
np
.
nan
)
outcoords
=
np
.
full
(
coords
.
shape
,
np
.
nan
)
outcoords
[
voxmask
]
=
disps
outcoords
[
voxmask
]
=
disps
return
outcoords
return
outcoords
.
reshape
(
outshape
)
class
CoefficientField
(
NonLinearTransform
):
class
CoefficientField
(
NonLinearTransform
):
...
...
This diff is collapsed.
Click to expand it.
tests/test_transform/test_nonlinear.py
+
4
−
0
View file @
dd48efe0
...
@@ -205,6 +205,10 @@ def test_DeformationField_transform():
...
@@ -205,6 +205,10 @@ def test_DeformationField_transform():
got
=
absfield
.
transform
(
rcoords
)
got
=
absfield
.
transform
(
rcoords
)
assert
np
.
all
(
np
.
isclose
(
got
,
scoords
))
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
'
)
got
=
relfield
.
transform
(
rvoxels
,
from_
=
'
voxel
'
,
to
=
'
voxel
'
)
assert
np
.
all
(
np
.
isclose
(
got
,
svoxels
))
assert
np
.
all
(
np
.
isclose
(
got
,
svoxels
))
got
=
absfield
.
transform
(
rvoxels
,
from_
=
'
voxel
'
,
to
=
'
voxel
'
)
got
=
absfield
.
transform
(
rvoxels
,
from_
=
'
voxel
'
,
to
=
'
voxel
'
)
...
...
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