Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
ndcurves
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
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
loco-3d
ndcurves
Commits
033bc846
Commit
033bc846
authored
5 years ago
by
Pierre Fernbach
Browse files
Options
Downloads
Patches
Plain Diff
[Tests][Python] WIP : update to changes in piecewise curves
parent
1de61eb5
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
python/test/test.py
+30
-34
30 additions, 34 deletions
python/test/test.py
with
30 additions
and
34 deletions
python/test/test.py
+
30
−
34
View file @
033bc846
...
@@ -8,10 +8,8 @@ from numpy import array, array_equal, isclose, random, zeros
...
@@ -8,10 +8,8 @@ from numpy import array, array_equal, isclose, random, zeros
from
numpy.linalg
import
norm
from
numpy.linalg
import
norm
from
curves
import
(
CURVES_WITH_PINOCCHIO_SUPPORT
,
Quaternion
,
SE3Curve
,
SO3Linear
,
bezier
,
bezier3
,
from
curves
import
(
CURVES_WITH_PINOCCHIO_SUPPORT
,
Quaternion
,
SE3Curve
,
SO3Linear
,
bezier
,
bezier3
,
bezier_from_hermite
,
bezier_from_polynomial
,
cubic_hermite_spline
,
curve_constraints
,
exact_cubic
,
cubic_hermite_spline
,
curve_constraints
,
exact_cubic
,
polynomial
,
hermite_from_bezier
,
hermite_from_polynomial
,
piecewise_bezier_curve
,
piecewise
,
piecewise_SE3
,
convert_to_polynomial
,
convert_to_bezier
,
convert_to_hermite
)
piecewise_cubic_hermite_curve
,
piecewise_polynomial_curve
,
piecewise_SE3_curve
,
polynomial
,
polynomial_from_bezier
,
polynomial_from_hermite
)
eigenpy
.
switchToNumpyArray
()
eigenpy
.
switchToNumpyArray
()
...
@@ -69,7 +67,6 @@ class TestCurves(unittest.TestCase):
...
@@ -69,7 +67,6 @@ class TestCurves(unittest.TestCase):
a
.
max
()
a
.
max
()
a
(
0.4
)
a
(
0.4
)
self
.
assertTrue
((
a
(
a
.
min
())
==
array
([
1.
,
2.
,
3.
])).
all
())
self
.
assertTrue
((
a
(
a
.
min
())
==
array
([
1.
,
2.
,
3.
])).
all
())
self
.
assertTrue
((
a
.
derivate
(
0.4
,
0
)
==
a
(
0.4
)).
all
())
a
.
derivate
(
0.4
,
2
)
a
.
derivate
(
0.4
,
2
)
a
=
a
.
compute_derivate
(
100
)
a
=
a
.
compute_derivate
(
100
)
prim
=
a
.
compute_primitive
(
1
)
prim
=
a
.
compute_primitive
(
1
)
...
@@ -161,7 +158,6 @@ class TestCurves(unittest.TestCase):
...
@@ -161,7 +158,6 @@ class TestCurves(unittest.TestCase):
a
.
max
()
a
.
max
()
a
(
0.4
)
a
(
0.4
)
self
.
assertTrue
((
a
(
a
.
min
())
==
array
([
1.
,
2.
,
3.
])).
all
())
self
.
assertTrue
((
a
(
a
.
min
())
==
array
([
1.
,
2.
,
3.
])).
all
())
self
.
assertTrue
((
a
.
derivate
(
0.4
,
0
)
==
a
(
0.4
)).
all
())
a
.
derivate
(
0.4
,
2
)
a
.
derivate
(
0.4
,
2
)
a
=
a
.
compute_derivate
(
100
)
a
=
a
.
compute_derivate
(
100
)
prim
=
a
.
compute_primitive
(
1
)
prim
=
a
.
compute_primitive
(
1
)
...
@@ -337,7 +333,7 @@ class TestCurves(unittest.TestCase):
...
@@ -337,7 +333,7 @@ class TestCurves(unittest.TestCase):
polynomial
(
waypoints0
,
0.
,
0.1
)
polynomial
(
waypoints0
,
0.
,
0.1
)
a
=
polynomial
(
waypoints1
,
0.
,
1.
)
a
=
polynomial
(
waypoints1
,
0.
,
1.
)
b
=
polynomial
(
waypoints2
,
1.
,
3.
)
b
=
polynomial
(
waypoints2
,
1.
,
3.
)
pc
=
piecewise
_polynomial_curve
(
a
)
pc
=
piecewise
(
a
)
pc
.
append
(
b
)
pc
.
append
(
b
)
pc
.
min
()
pc
.
min
()
pc
.
max
()
pc
.
max
()
...
@@ -349,7 +345,7 @@ class TestCurves(unittest.TestCase):
...
@@ -349,7 +345,7 @@ class TestCurves(unittest.TestCase):
pc
.
is_continuous
(
1
)
pc
.
is_continuous
(
1
)
# Test serialization
# Test serialization
pc
.
saveAsText
(
"
serialization_pc.test
"
)
pc
.
saveAsText
(
"
serialization_pc.test
"
)
pc_test
=
piecewise
_polynomial_curve
()
pc_test
=
piecewise
()
pc_test
.
loadFromText
(
"
serialization_pc.test
"
)
pc_test
.
loadFromText
(
"
serialization_pc.test
"
)
self
.
assertTrue
((
pc
(
0.4
)
==
pc_test
(
0.4
)).
all
())
self
.
assertTrue
((
pc
(
0.4
)
==
pc_test
(
0.4
)).
all
())
os
.
remove
(
"
serialization_pc.test
"
)
os
.
remove
(
"
serialization_pc.test
"
)
...
@@ -361,7 +357,7 @@ class TestCurves(unittest.TestCase):
...
@@ -361,7 +357,7 @@ class TestCurves(unittest.TestCase):
pc
.
append
(
c
)
pc
.
append
(
c
)
### Test the different append methods :
### Test the different append methods :
pc
=
piecewise
_polynomial_curve
()
pc
=
piecewise
()
self
.
assertEqual
(
pc
.
num_curves
(),
0
)
self
.
assertEqual
(
pc
.
num_curves
(),
0
)
end_point1
=
array
([
1.
,
3.
,
5.
,
6.5
,
-
2.
])
end_point1
=
array
([
1.
,
3.
,
5.
,
6.5
,
-
2.
])
max1
=
2.5
max1
=
2.5
...
@@ -371,7 +367,7 @@ class TestCurves(unittest.TestCase):
...
@@ -371,7 +367,7 @@ class TestCurves(unittest.TestCase):
pc
.
append
(
a
)
pc
.
append
(
a
)
pc
.
append
(
end_point1
.
reshape
(
-
1
,
1
),
max1
)
pc
.
append
(
end_point1
.
reshape
(
-
1
,
1
),
max1
)
pc
=
piecewise
_polynomial_curve
()
pc
=
piecewise
()
d
=
polynomial
(
waypoints3
,
0.
,
1.2
)
d
=
polynomial
(
waypoints3
,
0.
,
1.2
)
self
.
assertEqual
(
pc
.
num_curves
(),
0
)
self
.
assertEqual
(
pc
.
num_curves
(),
0
)
pc
.
append
(
d
)
pc
.
append
(
d
)
...
@@ -393,7 +389,7 @@ class TestCurves(unittest.TestCase):
...
@@ -393,7 +389,7 @@ class TestCurves(unittest.TestCase):
points_second_derivative
=
array
(
random
.
rand
(
3
,
N
))
points_second_derivative
=
array
(
random
.
rand
(
3
,
N
))
time_points
=
array
(
random
.
rand
(
1
,
N
)).
T
time_points
=
array
(
random
.
rand
(
1
,
N
)).
T
time_points
.
sort
(
0
)
time_points
.
sort
(
0
)
polC0
=
piecewise
_polynomial_curve
.
FromPointsList
(
points
,
time_points
)
polC0
=
piecewise
.
FromPointsList
(
points
,
time_points
)
self
.
assertEqual
(
polC0
.
min
(),
time_points
[
0
,
0
])
self
.
assertEqual
(
polC0
.
min
(),
time_points
[
0
,
0
])
self
.
assertEqual
(
polC0
.
max
(),
time_points
[
-
1
,
0
])
self
.
assertEqual
(
polC0
.
max
(),
time_points
[
-
1
,
0
])
self
.
assertTrue
(
polC0
.
is_continuous
(
0
))
self
.
assertTrue
(
polC0
.
is_continuous
(
0
))
...
@@ -401,7 +397,7 @@ class TestCurves(unittest.TestCase):
...
@@ -401,7 +397,7 @@ class TestCurves(unittest.TestCase):
for
i
in
range
(
N
):
for
i
in
range
(
N
):
self
.
assertTrue
(
isclose
(
polC0
(
time_points
[
i
,
0
]),
points
[:,
i
]).
all
())
self
.
assertTrue
(
isclose
(
polC0
(
time_points
[
i
,
0
]),
points
[:,
i
]).
all
())
polC1
=
piecewise
_polynomial_curve
.
FromPointsList
(
points
,
points_derivative
,
time_points
)
polC1
=
piecewise
.
FromPointsList
(
points
,
points_derivative
,
time_points
)
self
.
assertEqual
(
polC1
.
min
(),
time_points
[
0
,
0
])
self
.
assertEqual
(
polC1
.
min
(),
time_points
[
0
,
0
])
self
.
assertEqual
(
polC1
.
max
(),
time_points
[
-
1
,
0
])
self
.
assertEqual
(
polC1
.
max
(),
time_points
[
-
1
,
0
])
self
.
assertTrue
(
polC1
.
is_continuous
(
0
))
self
.
assertTrue
(
polC1
.
is_continuous
(
0
))
...
@@ -411,7 +407,7 @@ class TestCurves(unittest.TestCase):
...
@@ -411,7 +407,7 @@ class TestCurves(unittest.TestCase):
self
.
assertTrue
(
isclose
(
polC1
(
time_points
[
i
,
0
]),
points
[:,
i
]).
all
())
self
.
assertTrue
(
isclose
(
polC1
(
time_points
[
i
,
0
]),
points
[:,
i
]).
all
())
self
.
assertTrue
(
isclose
(
polC1
.
derivate
(
time_points
[
i
,
0
],
1
),
points_derivative
[:,
i
]).
all
())
self
.
assertTrue
(
isclose
(
polC1
.
derivate
(
time_points
[
i
,
0
],
1
),
points_derivative
[:,
i
]).
all
())
polC2
=
piecewise
_polynomial_curve
.
FromPointsList
(
points
,
points_derivative
,
points_second_derivative
,
polC2
=
piecewise
.
FromPointsList
(
points
,
points_derivative
,
points_second_derivative
,
time_points
)
time_points
)
self
.
assertEqual
(
polC2
.
min
(),
time_points
[
0
,
0
])
self
.
assertEqual
(
polC2
.
min
(),
time_points
[
0
,
0
])
self
.
assertEqual
(
polC2
.
max
(),
time_points
[
-
1
,
0
])
self
.
assertEqual
(
polC2
.
max
(),
time_points
[
-
1
,
0
])
...
@@ -428,13 +424,13 @@ class TestCurves(unittest.TestCase):
...
@@ -428,13 +424,13 @@ class TestCurves(unittest.TestCase):
time_points
[
0
,
0
]
=
1
time_points
[
0
,
0
]
=
1
time_points
[
1
,
0
]
=
0.5
time_points
[
1
,
0
]
=
0.5
with
self
.
assertRaises
(
ValueError
):
with
self
.
assertRaises
(
ValueError
):
polC0
=
piecewise
_polynomial_curve
.
FromPointsList
(
points
,
time_points
)
polC0
=
piecewise
.
FromPointsList
(
points
,
time_points
)
with
self
.
assertRaises
(
ValueError
):
with
self
.
assertRaises
(
ValueError
):
polC1
=
piecewise
_polynomial_curve
.
FromPointsList
(
points
,
points_derivative
,
time_points
)
polC1
=
piecewise
.
FromPointsList
(
points
,
points_derivative
,
time_points
)
with
self
.
assertRaises
(
ValueError
):
with
self
.
assertRaises
(
ValueError
):
polC2
=
piecewise
_polynomial_curve
.
FromPointsList
(
points
,
points_derivative
,
points_second_derivative
,
polC2
=
piecewise
.
FromPointsList
(
points
,
points_derivative
,
points_second_derivative
,
time_points
)
time_points
)
def
test_piecewise_bezier_curve
(
self
):
def
test_piecewise_bezier_curve
(
self
):
...
@@ -443,7 +439,7 @@ class TestCurves(unittest.TestCase):
...
@@ -443,7 +439,7 @@ class TestCurves(unittest.TestCase):
waypoints
=
array
([[
1.
,
2.
,
3.
],
[
4.
,
5.
,
6.
]]).
transpose
()
waypoints
=
array
([[
1.
,
2.
,
3.
],
[
4.
,
5.
,
6.
]]).
transpose
()
a
=
bezier
(
waypoints
,
0.
,
1.
)
a
=
bezier
(
waypoints
,
0.
,
1.
)
b
=
bezier
(
waypoints
,
1.
,
2.
)
b
=
bezier
(
waypoints
,
1.
,
2.
)
pc
=
piecewise
_bezier_curve
(
a
)
pc
=
piecewise
(
a
)
pc
.
append
(
b
)
pc
.
append
(
b
)
pc
.
min
()
pc
.
min
()
pc
.
max
()
pc
.
max
()
...
@@ -455,7 +451,7 @@ class TestCurves(unittest.TestCase):
...
@@ -455,7 +451,7 @@ class TestCurves(unittest.TestCase):
pc
.
is_continuous
(
1
)
pc
.
is_continuous
(
1
)
# Test serialization
# Test serialization
pc
.
saveAsText
(
"
serialization_pc.test
"
)
pc
.
saveAsText
(
"
serialization_pc.test
"
)
pc_test
=
piecewise
_bezier_curve
()
pc_test
=
piecewise
()
pc_test
.
loadFromText
(
"
serialization_pc.test
"
)
pc_test
.
loadFromText
(
"
serialization_pc.test
"
)
self
.
assertTrue
((
pc
(
0.4
)
==
pc_test
(
0.4
)).
all
())
self
.
assertTrue
((
pc
(
0.4
)
==
pc_test
(
0.4
)).
all
())
os
.
remove
(
"
serialization_pc.test
"
)
os
.
remove
(
"
serialization_pc.test
"
)
...
@@ -471,7 +467,7 @@ class TestCurves(unittest.TestCase):
...
@@ -471,7 +467,7 @@ class TestCurves(unittest.TestCase):
time_points1
=
array
([[
1.
,
2.
]]).
transpose
()
time_points1
=
array
([[
1.
,
2.
]]).
transpose
()
a
=
cubic_hermite_spline
(
points
,
tangents
,
time_points0
)
a
=
cubic_hermite_spline
(
points
,
tangents
,
time_points0
)
b
=
cubic_hermite_spline
(
points
,
tangents
,
time_points1
)
b
=
cubic_hermite_spline
(
points
,
tangents
,
time_points1
)
pc
=
piecewise
_cubic_hermite_curve
(
a
)
pc
=
piecewise
(
a
)
pc
.
append
(
b
)
pc
.
append
(
b
)
pc
.
min
()
pc
.
min
()
pc
.
max
()
pc
.
max
()
...
@@ -483,7 +479,7 @@ class TestCurves(unittest.TestCase):
...
@@ -483,7 +479,7 @@ class TestCurves(unittest.TestCase):
pc
.
is_continuous
(
1
)
pc
.
is_continuous
(
1
)
# Test serialization
# Test serialization
pc
.
saveAsText
(
"
serialization_pc.test
"
)
pc
.
saveAsText
(
"
serialization_pc.test
"
)
pc_test
=
piecewise
_cubic_hermite_curve
()
pc_test
=
piecewise
()
pc_test
.
loadFromText
(
"
serialization_pc.test
"
)
pc_test
.
loadFromText
(
"
serialization_pc.test
"
)
self
.
assertTrue
((
pc
(
0.4
)
==
pc_test
(
0.4
)).
all
())
self
.
assertTrue
((
pc
(
0.4
)
==
pc_test
(
0.4
)).
all
())
os
.
remove
(
"
serialization_pc.test
"
)
os
.
remove
(
"
serialization_pc.test
"
)
...
@@ -550,23 +546,23 @@ class TestCurves(unittest.TestCase):
...
@@ -550,23 +546,23 @@ class TestCurves(unittest.TestCase):
waypoints
=
array
([[
1.
,
2.
,
3.
],
[
4.
,
5.
,
6.
]]).
transpose
()
waypoints
=
array
([[
1.
,
2.
,
3.
],
[
4.
,
5.
,
6.
]]).
transpose
()
a
=
bezier
(
waypoints
)
a
=
bezier
(
waypoints
)
# converting bezier to polynomial
# converting bezier to polynomial
a_pol
=
polynomial_from_bezier
(
a
)
a_pol
=
convert_to_polynomial
(
a
)
self
.
assertTrue
(
norm
(
a
(
0.3
)
-
a_pol
(
0.3
))
<
__EPS
)
self
.
assertTrue
(
norm
(
a
(
0.3
)
-
a_pol
(
0.3
))
<
__EPS
)
# converting polynomial to hermite
# converting polynomial to hermite
a_chs
=
hermite_from_polynomial
(
a_pol
)
a_chs
=
convert_to_hermite
(
a_pol
)
self
.
assertTrue
(
norm
(
a_chs
(
0.3
)
-
a_pol
(
0.3
))
<
__EPS
)
self
.
assertTrue
(
norm
(
a_chs
(
0.3
)
-
a_pol
(
0.3
))
<
__EPS
)
# converting hermite to bezier
# converting hermite to bezier
a_bc
=
bezier_from_hermite
(
a_chs
)
a_bc
=
convert_to_bezier
(
a_chs
)
self
.
assertTrue
(
norm
(
a_chs
(
0.3
)
-
a_bc
(
0.3
))
<
__EPS
)
self
.
assertTrue
(
norm
(
a_chs
(
0.3
)
-
a_bc
(
0.3
))
<
__EPS
)
self
.
assertTrue
(
norm
(
a
(
0.3
)
-
a_bc
(
0.3
))
<
__EPS
)
self
.
assertTrue
(
norm
(
a
(
0.3
)
-
a_bc
(
0.3
))
<
__EPS
)
# converting bezier to hermite
# converting bezier to hermite
a_chs
=
hermite_from_bezier
(
a
)
a_chs
=
convert_to_hermite
(
a
)
self
.
assertTrue
(
norm
(
a
(
0.3
)
-
a_chs
(
0.3
))
<
__EPS
)
self
.
assertTrue
(
norm
(
a
(
0.3
)
-
a_chs
(
0.3
))
<
__EPS
)
# converting hermite to polynomial
# converting hermite to polynomial
a_pol
=
polynomial_from_hermite
(
a_chs
)
a_pol
=
convert_to_polynomial
(
a_chs
)
self
.
assertTrue
(
norm
(
a_pol
(
0.3
)
-
a_chs
(
0.3
))
<
__EPS
)
self
.
assertTrue
(
norm
(
a_pol
(
0.3
)
-
a_chs
(
0.3
))
<
__EPS
)
# converting polynomial to bezier
# converting polynomial to bezier
a_bc
=
bezier_from_polynomial
(
a_pol
)
a_bc
=
convert_to_bezier
(
a_pol
)
self
.
assertTrue
(
norm
(
a_bc
(
0.3
)
-
a_pol
(
0.3
))
<
__EPS
)
self
.
assertTrue
(
norm
(
a_bc
(
0.3
)
-
a_pol
(
0.3
))
<
__EPS
)
self
.
assertTrue
(
norm
(
a
(
0.3
)
-
a_bc
(
0.3
))
<
__EPS
)
self
.
assertTrue
(
norm
(
a
(
0.3
)
-
a_bc
(
0.3
))
<
__EPS
)
return
return
...
@@ -582,7 +578,7 @@ class TestCurves(unittest.TestCase):
...
@@ -582,7 +578,7 @@ class TestCurves(unittest.TestCase):
translation
=
bezier
(
waypoints
,
min
,
max
)
translation
=
bezier
(
waypoints
,
min
,
max
)
# test with bezier
# test with bezier
se3
=
SE3Curve
(
translation
,
init_rot
,
end_rot
)
se3
=
SE3Curve
(
translation
,
init_rot
,
end_rot
)
pc
=
piecewise_SE3
_curve
(
se3
)
pc
=
piecewise_SE3
(
se3
)
self
.
assertEqual
(
pc
.
num_curves
(),
1
)
self
.
assertEqual
(
pc
.
num_curves
(),
1
)
self
.
assertEqual
(
pc
.
min
(),
min
)
self
.
assertEqual
(
pc
.
min
(),
min
)
self
.
assertEqual
(
pc
.
max
(),
max
)
self
.
assertEqual
(
pc
.
max
(),
max
)
...
@@ -616,17 +612,17 @@ class TestCurves(unittest.TestCase):
...
@@ -616,17 +612,17 @@ class TestCurves(unittest.TestCase):
pc
.
append
(
se3_3
)
pc
.
append
(
se3_3
)
pc
.
saveAsText
(
"
serialization_curve.txt
"
)
pc
.
saveAsText
(
"
serialization_curve.txt
"
)
pc_txt
=
piecewise_SE3
_curve
()
pc_txt
=
piecewise_SE3
()
pc_txt
.
loadFromText
(
"
serialization_curve.txt
"
)
pc_txt
.
loadFromText
(
"
serialization_curve.txt
"
)
self
.
compareCurves
(
pc
,
pc_txt
)
self
.
compareCurves
(
pc
,
pc_txt
)
pc
.
saveAsXML
(
"
serialization_curve.xml
"
,
"
pc
"
)
pc
.
saveAsXML
(
"
serialization_curve.xml
"
,
"
pc
"
)
pc_xml
=
piecewise_SE3
_curve
()
pc_xml
=
piecewise_SE3
()
pc_xml
.
loadFromXML
(
"
serialization_curve.xml
"
,
"
pc
"
)
pc_xml
.
loadFromXML
(
"
serialization_curve.xml
"
,
"
pc
"
)
self
.
compareCurves
(
pc
,
pc_xml
)
self
.
compareCurves
(
pc
,
pc_xml
)
pc
.
saveAsBinary
(
"
serialization_curve
"
)
pc
.
saveAsBinary
(
"
serialization_curve
"
)
pc_bin
=
piecewise_SE3
_curve
()
pc_bin
=
piecewise_SE3
()
pc_bin
.
loadFromBinary
(
"
serialization_curve
"
)
pc_bin
.
loadFromBinary
(
"
serialization_curve
"
)
self
.
compareCurves
(
pc
,
pc_bin
)
self
.
compareCurves
(
pc
,
pc_bin
)
...
@@ -646,7 +642,7 @@ class TestCurves(unittest.TestCase):
...
@@ -646,7 +642,7 @@ class TestCurves(unittest.TestCase):
translation
=
bezier
(
waypoints
,
min
,
max
)
translation
=
bezier
(
waypoints
,
min
,
max
)
# test with bezier
# test with bezier
se3
=
SE3Curve
(
translation
,
init_rot
,
end_rot
)
se3
=
SE3Curve
(
translation
,
init_rot
,
end_rot
)
pc
=
piecewise_SE3
_curve
()
pc
=
piecewise_SE3
()
self
.
assertEqual
(
pc
.
num_curves
(),
0
)
self
.
assertEqual
(
pc
.
num_curves
(),
0
)
pc
.
append
(
se3
)
pc
.
append
(
se3
)
self
.
assertEqual
(
pc
.
num_curves
(),
1
)
self
.
assertEqual
(
pc
.
num_curves
(),
1
)
...
@@ -696,7 +692,7 @@ class TestCurves(unittest.TestCase):
...
@@ -696,7 +692,7 @@ class TestCurves(unittest.TestCase):
self
.
assertTrue
(
isclose
(
pmin
[
0
:
3
,
3
],
translation
(
min
)).
all
())
self
.
assertTrue
(
isclose
(
pmin
[
0
:
3
,
3
],
translation
(
min
)).
all
())
self
.
assertTrue
(
isclose
(
pmax
[
0
:
3
,
3
],
end_translation
).
all
())
self
.
assertTrue
(
isclose
(
pmax
[
0
:
3
,
3
],
end_translation
).
all
())
self
.
assertTrue
(
pc
.
is_continuous
(
0
))
self
.
assertTrue
(
pc
.
is_continuous
(
0
))
pc
=
piecewise_SE3
_curve
()
pc
=
piecewise_SE3
()
with
self
.
assertRaises
(
RuntimeError
):
with
self
.
assertRaises
(
RuntimeError
):
pc
.
append
(
end_pose
,
max
)
pc
.
append
(
end_pose
,
max
)
...
@@ -719,7 +715,7 @@ class TestCurves(unittest.TestCase):
...
@@ -719,7 +715,7 @@ class TestCurves(unittest.TestCase):
min
=
0.7
min
=
0.7
max
=
12.
max
=
12.
se3
=
SE3Curve
(
init_pose
,
end_pose
,
min
,
max
)
se3
=
SE3Curve
(
init_pose
,
end_pose
,
min
,
max
)
pc
=
piecewise_SE3
_curve
(
se3
)
pc
=
piecewise_SE3
(
se3
)
self
.
assertEqual
(
pc
.
num_curves
(),
1
)
self
.
assertEqual
(
pc
.
num_curves
(),
1
)
p
=
pc
.
evaluateAsSE3
(
min
)
p
=
pc
.
evaluateAsSE3
(
min
)
self
.
assertTrue
(
isinstance
(
p
,
SE3
))
self
.
assertTrue
(
isinstance
(
p
,
SE3
))
...
@@ -992,7 +988,7 @@ class TestCurves(unittest.TestCase):
...
@@ -992,7 +988,7 @@ class TestCurves(unittest.TestCase):
# points_second_derivative = array(random.rand(3, N))
# points_second_derivative = array(random.rand(3, N))
time_points
=
array
(
random
.
rand
(
1
,
N
)).
T
time_points
=
array
(
random
.
rand
(
1
,
N
)).
T
time_points
.
sort
(
0
)
time_points
.
sort
(
0
)
translation
=
piecewise
_polynomial_curve
.
FromPointsList
(
points
,
time_points
)
translation
=
piecewise
.
FromPointsList
(
points
,
time_points
)
min
=
translation
.
min
()
min
=
translation
.
min
()
max
=
translation
.
max
()
max
=
translation
.
max
()
se3
=
SE3Curve
(
translation
,
init_rot
,
end_rot
)
se3
=
SE3Curve
(
translation
,
init_rot
,
end_rot
)
...
...
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