We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c028c0a commit 7ff59b0Copy full SHA for 7ff59b0
kiss_slam/pipeline.py
@@ -88,7 +88,11 @@ def _global_mapping(self):
88
self._dataset.reset()
89
ref_ground_alignment = self.kiss_slam.closer.detector.get_ground_alignment_from_id(0)
90
deskewing_deltas = np.vstack(
91
- (np.eye(4)[None], np.linalg.inv(self.poses[:-1]) @ self.poses[1:])
+ (
92
+ np.eye(4)[None],
93
94
+ np.linalg.inv(self.poses[:-2]) @ self.poses[1:-1],
95
+ )
96
)
97
preprocessor = get_preprocessor(self.config)
98
occupancy_grid_mapper = OccupancyGridMapper(self.slam_config.occupancy_mapper)
0 commit comments