From 232e4464f77204f1fcd0772c078b0eb946917a85 Mon Sep 17 00:00:00 2001 From: simondlevy Date: Tue, 16 Jan 2018 13:39:25 -0500 Subject: [PATCH] Improved odometry thanks to Ernesto --- python/breezyslam/algorithms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/breezyslam/algorithms.py b/python/breezyslam/algorithms.py index 81db3fa..a6cb392 100644 --- a/python/breezyslam/algorithms.py +++ b/python/breezyslam/algorithms.py @@ -112,7 +112,7 @@ class CoreSLAM(object): self.velocities = (new_dxy_mm, new_dtheta_degrees, 0) # Implementing class updates map and pointcloud - self._updateMapAndPointcloud(velocities, should_update_map) + self._updateMapAndPointcloud(self.velocities, should_update_map) def getmap(self, mapbytes): '''