We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be74a8e commit 922c779Copy full SHA for 922c779
cpp/kiss_icp/pipeline/KissICP.hpp
@@ -37,7 +37,7 @@ struct KISSConfig {
37
// map params
38
double voxel_size = 1.0;
39
double max_range = 100.0;
40
- double min_range = 5.0;
+ double min_range = 0.0;
41
int max_points_per_voxel = 20;
42
43
// th parms
@@ -50,7 +50,7 @@ struct KISSConfig {
50
int max_num_threads = 0;
51
52
// Motion compensation
53
- bool deskew = false;
+ bool deskew = true;
54
};
55
56
class KissICP {
ros/launch/odometry.launch.py
@@ -38,8 +38,8 @@
class config:
# Preprocessing
max_range: float = 100.0
- min_range: float = 5.0
- deskew: bool = False
+ min_range: float = 0.0
+ deskew: bool = True
44
# Mapping parameters
45
voxel_size: float = max_range / 100.0
0 commit comments