Skip to content

Commit 922c779

Browse files
Same defaults for ROS and CPP (#431)
* Same defaults everywhere * Fix black
1 parent be74a8e commit 922c779

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cpp/kiss_icp/pipeline/KissICP.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ struct KISSConfig {
3737
// map params
3838
double voxel_size = 1.0;
3939
double max_range = 100.0;
40-
double min_range = 5.0;
40+
double min_range = 0.0;
4141
int max_points_per_voxel = 20;
4242

4343
// th parms
@@ -50,7 +50,7 @@ struct KISSConfig {
5050
int max_num_threads = 0;
5151

5252
// Motion compensation
53-
bool deskew = false;
53+
bool deskew = true;
5454
};
5555

5656
class KissICP {

ros/launch/odometry.launch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
class config:
3939
# Preprocessing
4040
max_range: float = 100.0
41-
min_range: float = 5.0
42-
deskew: bool = False
41+
min_range: float = 0.0
42+
deskew: bool = True
4343

4444
# Mapping parameters
4545
voxel_size: float = max_range / 100.0

0 commit comments

Comments
 (0)