Add comment
parent
5e97efa815
commit
1ca14d5164
2
THANKS
2
THANKS
|
@ -1,6 +1,6 @@
|
||||||
GTSAM was made possible by the efforts of many collaborators at Georgia Tech, listed below with their current afffiliation, if they left Tech:
|
GTSAM was made possible by the efforts of many collaborators at Georgia Tech, listed below with their current afffiliation, if they left Tech:
|
||||||
|
|
||||||
* Jeremy Aguilon
|
* Jeremy Aguilon, Facebook
|
||||||
* Sungtae An
|
* Sungtae An
|
||||||
* Doru Balcan, Bank of America
|
* Doru Balcan, Bank of America
|
||||||
* Chris Beall
|
* Chris Beall
|
||||||
|
|
|
@ -58,6 +58,10 @@ class TestFixedLagSmootherExample(unittest.TestCase):
|
||||||
gtsam.Pose2(5.4481, 0.49506, 0.165),
|
gtsam.Pose2(5.4481, 0.49506, 0.165),
|
||||||
gtsam.Pose2(5.9379, 0.5845, 0.18),
|
gtsam.Pose2(5.9379, 0.5845, 0.18),
|
||||||
]
|
]
|
||||||
|
# Iterates from 0.25s to 3.0s, adding 0.25s each loop
|
||||||
|
# In each iteration, the agent moves at a constant speed
|
||||||
|
# and its two odometers measure the change. The smoothed
|
||||||
|
# result is then compared to the ground truth
|
||||||
while time <= 3.0:
|
while time <= 3.0:
|
||||||
previous_key = 1000 * (time - delta_time)
|
previous_key = 1000 * (time - delta_time)
|
||||||
current_key = 1000 * time
|
current_key = 1000 * time
|
||||||
|
|
Loading…
Reference in New Issue