Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading