feat(drs_launch): add offline launcher #11
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request to the
src
directory includes several significant changes to enhance the functionality and configuration of the lidar-camera transformation and point cloud concatenation components. The most important changes include adding support for YAML format in thelidar_camera_tf_publisher
launch file, updating calibration results for multiple cameras, and adding a newpointcloud_concatenate
package.Enhancements to lidar-camera transformation:
src/drs_launch/launch/component/lidar_camera_tf_publisher.launch.py
: Added support for parsing YAML files for lidar-camera transformations. This includes a newparse_yaml
function and logic to handle different file formats.Updates to camera calibration results:
src/individual_params/config/default/camera0/camera0_calibration_results.yaml
: Added calibration results forcamera0
relative tolidar_front
.src/individual_params/config/default/camera1/camera1_calibration_results.yaml
: Added calibration results forcamera1
relative tolidar_front
.src/individual_params/config/default/camera2/camera2_calibration_results.yaml
: Added calibration results forcamera2
relative tolidar_right
.src/individual_params/config/default/camera3/camera3_calibration_results.yaml
: Added calibration results forcamera3
relative tolidar_right
.src/individual_params/config/default/camera4/camera4_calibration_results.yaml
: Added calibration results forcamera4
relative tolidar_rear
.src/individual_params/config/default/camera5/camera5_calibration_results.yaml
: Added calibration results forcamera5
relative tolidar_rear
.src/individual_params/config/default/camera6/camera6_calibration_results.yaml
: Added calibration results forcamera6
relative tolidar_left
.src/individual_params/config/default/camera7/camera7_calibration_results.yaml
: Added calibration results forcamera7
relative tolidar_left
.New point cloud concatenation package:
src/simple_point_concatenate/CMakeLists.txt
: Added a new CMake configuration for thepointcloud_concatenate
package, including dependencies and build instructions.src/simple_point_concatenate/README.md
: Added a README file for thePointCloudOffsetConcatenationComponent
, detailing its features, parameters, topics, and usage instructions.