Skip to content

Commit

Permalink
Remove preprocess from KISS-ICP due to PRBonn/kiss-icp@44d8563 (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
benemer authored Mar 5, 2024
1 parent 99ccf5e commit 01a4fbc
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion config/example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

data:
deskew: False
preprocess: True
max_range: 100.0
min_range: 3.0

Expand Down
1 change: 0 additions & 1 deletion src/mapmos/config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@

class DataConfig(BaseModel):
deskew: bool = False
preprocess: bool = True
max_range: float = 100.0
min_range: float = 3.0

Expand Down
1 change: 0 additions & 1 deletion src/mapmos/odometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
def parse_config(config_data: DataConfig, config_odometry: OdometryConfig):
kiss_config = KISSConfig()
kiss_config.data.deskew = config_data.deskew
kiss_config.data.preprocess = config_data.preprocess
kiss_config.data.max_range = config_data.max_range
kiss_config.data.min_range = config_data.min_range
kiss_config.mapping.voxel_size = config_odometry.voxel_size
Expand Down

0 comments on commit 01a4fbc

Please sign in to comment.