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
47a0088a
Commit
47a0088a
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Transform veclength/normalise functions can do multiple vectors at once
parent
156454ec
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fsl/utils/transform.py
+17
-4
17 additions, 4 deletions
fsl/utils/transform.py
with
17 additions
and
4 deletions
fsl/utils/transform.py
+
17
−
4
View file @
47a0088a
...
@@ -55,13 +55,26 @@ def concat(*xforms):
...
@@ -55,13 +55,26 @@ def concat(*xforms):
def
veclength
(
vec
):
def
veclength
(
vec
):
"""
Returns the length of the given vector.
"""
"""
Returns the length of the given vector(s).
return
np
.
sqrt
(
np
.
dot
(
vec
,
vec
))
Multiple vectors may be passed in, with a shape of ``(n, 3)``.
"""
vec
=
np
.
array
(
vec
,
copy
=
False
).
reshape
(
-
1
,
3
)
return
np
.
sqrt
(
np
.
einsum
(
'
ij,ij->i
'
,
vec
,
vec
))
def
normalise
(
vec
):
def
normalise
(
vec
):
"""
Normalises the given vector to unit length.
"""
"""
Normalises the given vector(s) to unit length.
return
vec
/
veclength
(
vec
)
Multiple vectors may be passed in, with a shape of ``(n, 3)``.
"""
vec
=
np
.
array
(
vec
,
copy
=
False
).
reshape
(
-
1
,
3
)
n
=
(
vec
.
T
/
veclength
(
vec
)).
T
if
n
.
size
==
3
:
n
=
n
[
0
]
return
n
def
scaleOffsetXform
(
scales
,
offsets
):
def
scaleOffsetXform
(
scales
,
offsets
):
...
...
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