No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 0.2.0
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/robotics-laboratory/truck.git
VCS Type git
VCS Version master
Last Updated 2025-03-15
Dev Status UNMAINTAINED
CI status No Continuous Integration
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

lidar_map

Additional Links

No additional links.

Maintainers

  • apmilko

Authors

No additional authors.

3D LiDAR Map Builder

This package allows to build 3D LiDAR map of environment by providing bag file of .mcap format with recorded odometry and LiDAR topics.

In the recorded bag robot should move calmly and visit all parts of environment from different angles, it’s important to make several loop-closures while riding.

How to use

Execute next commands inside truck/packages/lidar_map directory.

Run executable lidar_map_executable with --help command to explore available options and arguments:

ros2 run lidar_map lidar_map_executable --help

Parameters:

  1. --mcap-input: path to .mcap file with a ride (required)

  2. --mcap-output: path to NON-EXISTING folder for saving map (required)

  3. --mcap-log: path to NON-EXISTING folder for saving map logs (optional)

  4. --json-log: path to json file for saving map logs (optional)

Run the executable lidar_map_executable with the assigned --mcap-input and --mcap-output arguments:

ros2 run lidar_map lidar_map_executable
  --mcap-input data/rides/ride_atrium_XX_YY_ZZ.mcap
  --mcap-output data/clouds/cloud_atrium_XX_YY_ZZ

Logging Options

You can now specify logging options separately:

  1. .mcap file: contains poses and clouds for each iteration of pose graph

  2. .json file: contains poses with ICP and odom edges on each iteration of the graph

ros2 run lidar_map lidar_map_executable
  --mcap-input data/rides/ride_atrium_XX_YY_ZZ.mcap
  --mcap-output data/clouds/cloud_atrium_XX_YY_ZZ
  --mcap-log data/logs/mcap/cloud_atrium_XX_YY_ZZ_log
  --json-log data/logs/json/cloud_atrium_XX_YY_ZZ_log.json

Debug

Calculate and visualize normals for reference_cloud:

CloudWithAttributes reference_cloud_with_attr = {
  .cloud = reference_cloud,
  .normals = builder.calculateNormalsForReferenceCloud(reference_cloud),
};

serialization::writer::MCAPWriter::writeCloudWithAttributes(
    "data/logs/reference_cloud_with_attr",        // path to save mcap file
    reference_cloud_with_attr,                    // cloud
    "/cloud",                                     // topic name
    "world",                                      // frame name
    70                                            // ratio of normals to be visualized
);

Calculate and visualize outliers weights for reading_cloud:

CloudWithAttributes reading_cloud_with_attr = {
  .cloud = reading_cloud,
  .weights = builder.calculateWeightsForReadingCloud(clouds[0], clouds[1])
};

serialization::writer::MCAPWriter::writeCloudWithAttributes(
    "data/logs/reading_cloud_with_attr",          // path to save mcap file
    reading_cloud_with_attr,                      // cloud
    "/cloud",                                     // topic name
    "world"                                       // frame
);

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged lidar_map at Robotics Stack Exchange

No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.