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
0f391b2e
Commit
0f391b2e
authored
5 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
ENH: applyDeformation accepts a premat option
parent
d5039cf7
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
fsl/transform/nonlinear.py
+32
-18
32 additions, 18 deletions
fsl/transform/nonlinear.py
with
32 additions
and
18 deletions
fsl/transform/nonlinear.py
+
32
−
18
View file @
0f391b2e
...
@@ -679,7 +679,13 @@ def convertDeformationSpace(field, from_, to):
...
@@ -679,7 +679,13 @@ def convertDeformationSpace(field, from_, to):
defType
=
field
.
deformationType
)
defType
=
field
.
deformationType
)
def
applyDeformation
(
image
,
field
,
ref
=
None
,
order
=
1
,
mode
=
None
,
cval
=
None
):
def
applyDeformation
(
image
,
field
,
ref
=
None
,
order
=
1
,
mode
=
None
,
cval
=
None
,
premat
=
None
):
"""
Applies a :class:`DeformationField` to an :class:`.Image`.
"""
Applies a :class:`DeformationField` to an :class:`.Image`.
The image is transformed into the space of the field
'
s reference image
The image is transformed into the space of the field
'
s reference image
...
@@ -691,25 +697,30 @@ def applyDeformation(image, field, ref=None, order=1, mode=None, cval=None):
...
@@ -691,25 +697,30 @@ def applyDeformation(image, field, ref=None, order=1, mode=None, cval=None):
the input image. It is therefore assumed that an alternate ``ref`` is
the input image. It is therefore assumed that an alternate ``ref`` is
aligned in world coordinates with the field
'
s actual reference image.
aligned in world coordinates with the field
'
s actual reference image.
:arg image: :class:`.Image` to be transformed
:arg image:
:class:`.Image` to be transformed
:arg field: :class:`DeformationField` to use
:arg field:
:class:`DeformationField` to use
:arg ref: Alternate reference image - if not provided, ``field.ref``
:arg ref:
Alternate reference image - if not provided, ``field.ref``
is used
is used
:arg order: Spline interpolation order, passed through to the
:arg order:
Spline interpolation order, passed through to the
``scipy.ndimage.affine_transform`` function - ``0``
``scipy.ndimage.affine_transform`` function - ``0``
corresponds to nearest neighbour interpolation, ``1``
corresponds to nearest neighbour interpolation, ``1``
(the default) to linear interpolation, and ``3`` to
(the default) to linear interpolation, and ``3`` to
cubic interpolation.
cubic interpolation.
:arg mode: How to handle regions which are outside of the image FOV.
:arg mode:
How to handle regions which are outside of the image FOV.
Defaults to `
''
nearest
'
``.
Defaults to `
''
nearest
'
``.
:arg cval: Constant value to use when ``mode=
'
constant
'
``.
:arg cval:
Constant value to use when ``mode=
'
constant
'
``.
:return: ``numpy.array`` containing the transformed image data.
:arg premat: Optional affine transform which can be used if ``image`` is
not in the same space as ``field.src``. Assumed to transform
from ``image`` **voxel** coordinates into ``field.src``
**voxel** coordinates.
:return: ``numpy.array`` containing the transformed image data.
"""
"""
if
order
is
None
:
order
=
1
if
order
is
None
:
order
=
1
...
@@ -763,12 +774,15 @@ def applyDeformation(image, field, ref=None, order=1, mode=None, cval=None):
...
@@ -763,12 +774,15 @@ def applyDeformation(image, field, ref=None, order=1, mode=None, cval=None):
# We assume world-world alignment
# We assume world-world alignment
# between the original source
# between the original source
# and the image to be resampled
# and the image to be resampled
if
not
image
.
sameSpace
(
src
):
if
(
premat
is
not
None
)
or
(
not
image
.
sameSpace
(
src
)):
post
=
affine
.
concat
(
image
.
getAffine
(
'
world
'
,
'
voxel
'
),
if
premat
is
None
:
src
.
getAffine
(
'
voxel
'
,
'
world
'
))
premat
=
affine
.
concat
(
image
.
getAffine
(
'
world
'
,
'
voxel
'
),
src
.
getAffine
(
'
voxel
'
,
'
world
'
))
else
:
premat
=
affine
.
invert
(
premat
)
shape
=
field
.
shape
shape
=
field
.
shape
field
=
field
.
reshape
((
-
1
,
3
))
field
=
field
.
reshape
((
-
1
,
3
))
field
=
affine
.
transform
(
field
,
p
os
t
)
field
=
affine
.
transform
(
field
,
p
rema
t
)
field
=
field
.
reshape
(
shape
)
field
=
field
.
reshape
(
shape
)
field
=
field
.
transpose
((
3
,
0
,
1
,
2
))
field
=
field
.
transpose
((
3
,
0
,
1
,
2
))
...
...
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