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
Package registry
Model registry
Operate
Environments
Terraform modules
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
Evan Edmond
fslpy
Commits
b65a61b6
Commit
b65a61b6
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
New little function to normalise vectors. Sick of duplicating this code
everywhere.
parent
66ab6c8f
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
+18
-0
18 additions, 0 deletions
fsl/utils/transform.py
with
18 additions
and
0 deletions
fsl/utils/transform.py
+
18
−
0
View file @
b65a61b6
...
@@ -22,6 +22,14 @@ spaces. The following functions are provided:
...
@@ -22,6 +22,14 @@ spaces. The following functions are provided:
axisBounds
axisBounds
flirtMatrixToSform
flirtMatrixToSform
sformToFlirtMatrix
sformToFlirtMatrix
And a few more functions are provided for working with vectors:
.. autosummary::
:nosignatures:
veclength
normalise
"""
"""
import
numpy
as
np
import
numpy
as
np
...
@@ -45,6 +53,16 @@ def concat(*xforms):
...
@@ -45,6 +53,16 @@ def concat(*xforms):
return
result
return
result
def
veclength
(
vec
):
"""
Returns the length of the given vector.
"""
return
np
.
sqrt
(
np
.
dot
(
vec
,
vec
))
def
normalise
(
vec
):
"""
Normalises the given vector to unit length.
"""
return
vec
/
veclength
(
vec
)
def
scaleOffsetXform
(
scales
,
offsets
):
def
scaleOffsetXform
(
scales
,
offsets
):
"""
Creates and returns an affine transformation matrix which encodes
"""
Creates and returns an affine transformation matrix which encodes
the specified scale(s) and offset(s).
the specified scale(s) and offset(s).
...
...
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