Skip to content

Commit b526601

Browse files
committed
fix typos
1 parent 5bbf034 commit b526601

5 files changed

Lines changed: 8 additions & 12 deletions

File tree

demos/sm2mm_no_decim_imu.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
# See: https://github.com/MOLAorg/mp2p_icp/tree/develop/apps/sm2mm
55
#
66
# Explanation of this particular pipeline:
7-
# - Generators: empty, so the default generator is used (everything in one
8-
# layer named 'raw' with all points).
7+
# - Generators: default generator is used (creates an 'raw' layer).
98
# - Filters: Deskew using IMU, remove close points.
109
# - Final filters: intensity normalization.
1110
# -----------------------------------------------------------------------------

demos/sm2mm_no_decim_imu_mls.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
# See: https://github.com/MOLAorg/mp2p_icp/tree/develop/apps/sm2mm
55
#
66
# Explanation of this particular pipeline:
7-
# - Generators: empty, so the default generator is used (everything in one
8-
# layer named 'raw' with all points).
7+
# - Generators: default generator is used (creates an 'raw' layer).
98
# - Filters: Deskew using IMU, remove close points.
109
# - Final filters: intensity normalization, MLS filtering.
1110
# -----------------------------------------------------------------------------

demos/sm2mm_pointcloud_voxelize.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
# See: https://github.com/MOLAorg/mp2p_icp/tree/develop/apps/sm2mm
55
#
66
# Explanation of this particular pipeline:
7-
# - Generators: empty, so the default generator is used (everything in one
8-
# layer named 'raw' with all points).
7+
# - Generators: default generator is used (creates an 'raw' layer).
98
# - Filters: Just one downsampling filter, with an additional removal of close
109
# points (e.g. the robot body)
1110
# -----------------------------------------------------------------------------

demos/sm2mm_pointcloud_voxelize_no_deskew.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
# See: https://github.com/MOLAorg/mp2p_icp/tree/develop/apps/sm2mm
55
#
66
# Explanation of this particular pipeline:
7-
# - Generators: empty, so the default generator is used (everything in one
8-
# layer named 'raw' with all points).
7+
# - Generators: default generator is used (creates an 'raw' layer).
98
# - Filters: Just one downsampling filter, with an additional removal of close
109
# points (e.g. the robot body)
1110
# -----------------------------------------------------------------------------

mp2p_icp_filters/src/Generator.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -354,10 +354,10 @@ bool Generator::filterPointCloud( //
354354

355355
outPc = std::dynamic_pointer_cast<mrpt::maps::CPointsMap>(obj);
356356
ASSERTMSG_(
357-
obj, mrpt::format(
358-
"Error creating class of type '%s': it does not seem to be derived from "
359-
"CPointsMap as expected.",
360-
params.default_pointcloud_class.c_str()));
357+
outPc, mrpt::format(
358+
"Error creating class of type '%s': it does not seem to be derived from "
359+
"CPointsMap as expected.",
360+
params.default_pointcloud_class.c_str()));
361361
}
362362
ASSERT_(outPc);
363363

0 commit comments

Comments
 (0)