We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cc304e commit 958f529Copy full SHA for 958f529
kiss_slam/pipeline.py
@@ -87,10 +87,7 @@ def _global_mapping(self):
87
88
if hasattr(self._dataset, "reset"):
89
self._dataset.reset()
90
- ref_ground_alignment = map_closures.align_map_to_local_ground(
91
- self.kiss_slam.local_map_graph[0].pcd.point.positions.cpu().numpy(),
92
- self.slam_config.odometry.mapping.voxel_size,
93
- )
+ ref_ground_alignment = self.kiss_slam.closer.detector.get_ground_alignment_from_id(0)
94
deskewing_deltas = np.vstack(
95
(np.eye(4)[None], np.linalg.inv(self.poses[:-1]) @ self.poses[1:])
96
)
0 commit comments