File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ Python codes for robotics algorithm.
13
13
* [ Extended Kalman Filter localization] ( #extended-kalman-filter-localization )
14
14
* [ Unscented Kalman Filter localization] ( #unscented-kalman-filter-localization )
15
15
* [ Particle Filter localization] ( #particle-filter-localization )
16
+ * [ Mapping] ( #mapping )
17
+ * [ Gaussian Grid Map] ( #gaussian-grid-map )
16
18
* [ Path Planning] ( #path-planning )
17
19
* [ Dynamic Window Approach] ( #dynamic-window-approach )
18
20
* [ Grid based search] ( #grid-based-search )
@@ -120,7 +122,7 @@ This measurements are used for PF localization.
120
122
121
123
# Mapping
122
124
123
- # Gaussian Grid Map
125
+ ## Gaussian Grid Map
124
126
125
127
This is a 2D gaussian grid mapping example.
126
128
@@ -504,3 +506,5 @@ Atsushi Sakai ([@Atsushi_twi](https://twitter.com/Atsushi_twi))
504
506
505
507
506
508
509
+
510
+
Original file line number Diff line number Diff line change
1
+ from unittest import TestCase
2
+
3
+ from Mapping .gaussian_grid_map import gaussian_grid_map 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