File tree 3 files changed +18
-0
lines changed
3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -264,6 +264,8 @@ The black line is dead reckoning.
264
264
265
265
The red line is the estimated trajectory with Graph based SLAM.
266
266
267
+ The black stars are landmarks for graph edge generation.
268
+
267
269
![ 3] ( https://github.com/AtsushiSakai/PythonRobotics/raw/master/SLAM/GraphBasedSLAM/animation.gif )
268
270
269
271
Ref:
Original file line number Diff line number Diff line change 4
4
5
5
author: Atsushi Sakai (@Atsushi_twi)
6
6
7
+ Ref
8
+
9
+ [A Tutorial on Graph-Based SLAM](http://www2.informatik.uni-freiburg.de/~stachnis/pdf/grisetti10titsmag.pdf)
10
+
7
11
"""
8
12
9
13
import numpy as np
Original file line number Diff line number Diff line change
1
+ from unittest import TestCase
2
+
3
+ from SLAM .GraphBasedSLAM import graph_based_slam as m
4
+
5
+ print (__file__ )
6
+
7
+
8
+ class Test (TestCase ):
9
+
10
+ def test1 (self ):
11
+ m .show_animation = False
12
+ m .main ()
You can’t perform that action at this time.
0 commit comments