forked from ANYbotics/grid_map
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'anymal_research/rsl/fix/grid_map_pcl' into 'master'
Rsl/fix/grid map pcl GitOrigin-RevId: a98450ede0d459d12f7b80ef694a1a5717d1abee
- Loading branch information
1 parent
c88a9e3
commit 32978d9
Showing
17 changed files
with
355 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,4 +36,5 @@ | |
# OS X | ||
.DS_Store | ||
|
||
grid_map_pcl/data/ | ||
grid_map_pcl/data/* | ||
!grid_map_pcl/data/input_cloud.pcd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,44 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<launch> | ||
<arg name="folder_path" default="$(find grid_map_pcl)/config"/> | ||
<arg name="pcd_filename" default="plane_noisy.pcd" /> | ||
<arg name="folder_path" default="$(find grid_map_pcl)/data"/> | ||
<arg name="pcd_filename" default="input_cloud.pcd" /> | ||
<arg name="config_file_path" default="$(find grid_map_pcl)/config/parameters.yaml" /> | ||
<arg name="map_rosbag_topic" default="grid_map" /> | ||
<arg name="output_grid_map" default="elevation_map.bag" /> | ||
<arg name="output_grid_map" default="$(find grid_map_pcl)/data/input_cloud.bag" /> | ||
<arg name="map_frame" default="map" /> | ||
<arg name="map_layer_name" default="elevation" /> | ||
<arg name="prefix" default=""/> | ||
<arg name="set_verbosity_to_debug" default="false"/> | ||
<arg name="publish_point_cloud" default="true"/> | ||
|
||
<node name="grid_map_pcl_loader_node" pkg="grid_map_pcl" | ||
type="grid_map_pcl_loader_node" output="screen" launch-prefix="$(arg prefix)"> | ||
<rosparam file="$(find grid_map_pcl)/config/parameters.yaml" /> | ||
<node name="grid_map_pcl_loader_node" | ||
pkg="grid_map_pcl" | ||
type="grid_map_pcl_loader_node" | ||
output="screen" | ||
launch-prefix="$(arg prefix)"> | ||
<rosparam file="$(arg config_file_path)" /> | ||
<param name="config_file_path" type="string" value="$(arg config_file_path)" /> | ||
<param name="folder_path" type="string" value="$(arg folder_path)" /> | ||
<param name="pcd_filename" type="string" value="$(arg pcd_filename)" /> | ||
<param name="map_rosbag_topic" type="string" value="$(arg map_rosbag_topic)" /> | ||
<param name="output_grid_map" type="string" value="$(arg output_grid_map)" /> | ||
<param name="map_frame" type="string" value="$(arg map_frame)" /> | ||
<param name="map_layer_name" type="string" value="$(arg map_layer_name)" /> | ||
<param name="set_verbosity_to_debug" type="bool" value="$(arg set_verbosity_to_debug)" /> | ||
<param name="set_verbosity_to_debug" type="bool" value="$(arg set_verbosity_to_debug)" /> | ||
</node> | ||
</launch> | ||
|
||
<node name="rviz_grid_map_pcl" pkg="rviz" type="rviz" args="-d $(find grid_map_pcl)/rviz/grid_map_vis.rviz" /> | ||
|
||
<node name="point_cloud_publisher_node" | ||
pkg="grid_map_pcl" | ||
type="pointcloud_publisher_node" | ||
output="screen" | ||
launch-prefix="$(arg prefix)" | ||
if="$(arg publish_point_cloud)"> | ||
<param name="folder_path" type="string" value="$(arg folder_path)" /> | ||
<param name="pcd_filename" type="string" value="$(arg pcd_filename)" /> | ||
<param name="cloud_frame" type="string" value="$(arg map_frame)" /> | ||
</node> | ||
|
||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,14 +12,19 @@ | |
<author email="[email protected]">Edo Jelavic</author> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
|
||
<!-- <build_depend>cmake_clang_tools</build_depend> --> | ||
|
||
<depend>grid_map_core</depend> | ||
<depend>grid_map_msgs</depend> | ||
<depend>grid_map_ros</depend> | ||
<depend>libpcl-all-dev</depend> | ||
<depend>pcl_ros</depend> | ||
<depend>roscpp</depend> | ||
<depend>yaml-cpp</depend> | ||
|
||
<exec_depend>rviz</exec_depend> | ||
|
||
<!-- <test_depend>cmake_code_coverage</test_depend> --> | ||
<test_depend>gtest</test_depend> | ||
</package> |
Oops, something went wrong.