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.
1313 * [ Extended Kalman Filter localization] ( #extended-kalman-filter-localization )
1414 * [ Unscented Kalman Filter localization] ( #unscented-kalman-filter-localization )
1515 * [ Particle Filter localization] ( #particle-filter-localization )
16+ * [ Mapping] ( #mapping )
17+ * [ Gaussian Grid Map] ( #gaussian-grid-map )
1618 * [ Path Planning] ( #path-planning )
1719 * [ Dynamic Window Approach] ( #dynamic-window-approach )
1820 * [ Grid based search] ( #grid-based-search )
@@ -120,7 +122,7 @@ This measurements are used for PF localization.
120122
121123# Mapping
122124
123- # Gaussian Grid Map
125+ ## Gaussian Grid Map
124126
125127This is a 2D gaussian grid mapping example.
126128
@@ -504,3 +506,5 @@ Atsushi Sakai ([@Atsushi_twi](https://twitter.com/Atsushi_twi))
504506
505507
506508
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