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
82c96206
Commit
82c96206
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
transform method now has a 'vector' option, which skips translation.
parent
1614e9ee
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/utils/transform.py
+19
-12
19 additions, 12 deletions
fsl/utils/transform.py
with
19 additions
and
12 deletions
fsl/utils/transform.py
+
19
−
12
View file @
82c96206
...
...
@@ -412,24 +412,28 @@ def axisBounds(shape,
else
:
return
(
lo
,
hi
)
def
transform
(
p
,
xform
,
axes
=
None
):
def
transform
(
p
,
xform
,
axes
=
None
,
vector
=
False
):
"""
Transforms the given set of points ``p`` according to the given affine
transformation ``xform``.
:arg p: A sequence or array of points of shape :math:`N
\\
times 3`.
:arg p:
A sequence or array of points of shape :math:`N
\\
times 3`.
:arg xform: An affine transformation matrix with which to transform the
points in ``p``.
:arg xform:
An affine transformation matrix with which to transform the
points in ``p``.
:arg axes: If you are only interested in one or two axes, and the source
axes are orthogonal to the target axes (see the note below),
you may pass in a 1D, ``N*1``, or ``N*2`` array as ``p``, and
use this argument to specify which axis/axes that the data in
``p`` correspond to.
:arg axes:
If you are only interested in one or two axes, and the source
axes are orthogonal to the target axes (see the note below),
you may pass in a 1D, ``N*1``, or ``N*2`` array as ``p``, and
use this argument to specify which axis/axes that the data in
``p`` correspond to.
:returns: The points in ``p``, transformed by ``xform``, as a ``numpy``
array with the same data type as the input.
:arg vector: Defaults to ``False``. If ``True``, the points are treated
as vectors - the translation component of the transformation
is not applied.
:returns: The points in ``p``, transformed by ``xform``, as a ``numpy``
array with the same data type as the input.
.. note:: The ``axes`` argument should only be used if the source
...
...
@@ -442,7 +446,10 @@ def transform(p, xform, axes=None):
"""
p
=
_fillPoints
(
p
,
axes
)
t
=
np
.
dot
(
xform
[:
3
,
:
3
],
p
.
T
).
T
+
xform
[:
3
,
3
]
t
=
np
.
dot
(
xform
[:
3
,
:
3
],
p
.
T
).
T
if
not
vector
:
t
=
t
+
xform
[:
3
,
3
]
if
axes
is
not
None
:
t
=
t
[:,
axes
]
...
...
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