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
8c3f56e9
Commit
8c3f56e9
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
transform tests - scaleOffsetXform should accept tuples, and compose should
accept rotation matrix
parent
2f42d56e
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
tests/test_transform.py
+17
-2
17 additions, 2 deletions
tests/test_transform.py
with
17 additions
and
2 deletions
tests/test_transform.py
+
17
−
2
View file @
8c3f56e9
...
@@ -108,9 +108,11 @@ def test_scaleOffsetXform():
...
@@ -108,9 +108,11 @@ def test_scaleOffsetXform():
expected
=
[[
float
(
v
)
for
v
in
l
.
split
()]
for
l
in
expected
]
expected
=
[[
float
(
v
)
for
v
in
l
.
split
()]
for
l
in
expected
]
expected
=
np
.
array
(
expected
)
expected
=
np
.
array
(
expected
)
result
=
transform
.
scaleOffsetXform
(
scales
,
offsets
)
result1
=
transform
.
scaleOffsetXform
(
scales
,
offsets
)
result2
=
transform
.
scaleOffsetXform
(
tuple
(
scales
),
tuple
(
offsets
))
assert
np
.
all
(
np
.
isclose
(
result
,
expected
))
assert
np
.
all
(
np
.
isclose
(
result1
,
expected
))
assert
np
.
all
(
np
.
isclose
(
result2
,
expected
))
def
test_compose_and_decompose
():
def
test_compose_and_decompose
():
...
@@ -138,6 +140,19 @@ def test_compose_and_decompose():
...
@@ -138,6 +140,19 @@ def test_compose_and_decompose():
assert
np
.
all
(
np
.
isclose
(
xform
,
result
,
atol
=
1e-5
))
assert
np
.
all
(
np
.
isclose
(
xform
,
result
,
atol
=
1e-5
))
# compose should also accept a rotation matrix
rots
=
[
np
.
pi
/
5
,
np
.
pi
/
4
,
np
.
pi
/
3
]
rmat
=
transform
.
axisAnglesToRotMat
(
*
rots
)
xform
=
transform
.
compose
([
1
,
1
,
1
],
[
0
,
0
,
0
],
rmat
)
sc
,
of
,
rot
=
transform
.
decompose
(
xform
)
sc
=
np
.
array
(
sc
)
of
=
np
.
array
(
of
)
rot
=
np
.
array
(
rot
)
assert
np
.
all
(
sc
==
[
1
,
1
,
1
])
assert
np
.
all
(
of
==
[
0
,
0
,
0
])
assert
np
.
all
(
np
.
isclose
(
rot
,
rots
))
def
test_axisBounds
():
def
test_axisBounds
():
testfile
=
op
.
join
(
datadir
,
'
test_transform_test_axisBounds.txt
'
)
testfile
=
op
.
join
(
datadir
,
'
test_transform_test_axisBounds.txt
'
)
...
...
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