mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 04:08:05 -05:00
added test
This commit is contained in:
@@ -13,6 +13,8 @@ Python codes for robotics algorithm.
|
||||
* [Extended Kalman Filter localization](#extended-kalman-filter-localization)
|
||||
* [Unscented Kalman Filter localization](#unscented-kalman-filter-localization)
|
||||
* [Particle Filter localization](#particle-filter-localization)
|
||||
* [Mapping](#mapping)
|
||||
* [Gaussian Grid Map](#gaussian-grid-map)
|
||||
* [Path Planning](#path-planning)
|
||||
* [Dynamic Window Approach](#dynamic-window-approach)
|
||||
* [Grid based search](#grid-based-search)
|
||||
@@ -120,7 +122,7 @@ This measurements are used for PF localization.
|
||||
|
||||
# Mapping
|
||||
|
||||
# Gaussian Grid Map
|
||||
## Gaussian Grid Map
|
||||
|
||||
This is a 2D gaussian grid mapping example.
|
||||
|
||||
@@ -504,3 +506,5 @@ Atsushi Sakai ([@Atsushi_twi](https://twitter.com/Atsushi_twi))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
12
tests/test_gaussian_grid_map.py
Normal file
12
tests/test_gaussian_grid_map.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from unittest import TestCase
|
||||
|
||||
from Mapping.gaussian_grid_map import gaussian_grid_map as m
|
||||
|
||||
print(__file__)
|
||||
|
||||
|
||||
class Test(TestCase):
|
||||
|
||||
def test1(self):
|
||||
m.show_animation = False
|
||||
m.main()
|
||||
Reference in New Issue
Block a user