Skip to content

Commit

Permalink
Bump kiss version
Browse files Browse the repository at this point in the history
  • Loading branch information
benemer committed Jan 14, 2025
1 parent 9772a1c commit c5f7e0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[project]
name = "mapmos"
version = "1.0.0"
version = "1.1.0"
description = "Building Volumetric Beliefs for Dynamic Environments Exploiting Map-Based Moving Object Segmentation"
readme = "README.md"
authors = [
{ name = "Benedikt Mersch", email = "benedikt.mersch@gmail.com" },
]
license_files = "LICENSE"
dependencies = [
"kiss-icp>=1.0.0",
"kiss-icp>=1.2.0",
"diskcache>=5.3.0",
"pytorch_lightning>=1.6.4",
]
Expand Down
5 changes: 1 addition & 4 deletions src/mapmos/odometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,7 @@ def __init__(

def register_points(self, points, timestamps, scan_index):
# Apply motion compensation
points = self.compensator.deskew_scan(points, timestamps, self.last_delta)

# Preprocess the input cloud
points_prep = self.preprocess(points)
points_prep = self.preprocessor.preprocess(points, timestamps, self.last_delta)

# Voxelize
source, points_downsample = self.voxelize(points_prep)
Expand Down

0 comments on commit c5f7e0a

Please sign in to comment.