-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tutunarsl
committed
Jun 29, 2024
1 parent
9d91737
commit fe4a9e2
Showing
2 changed files
with
21 additions
and
4 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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<launch> | ||
|
||
<arg name="pcd_file_path" default="$(find smb_slam)/data/maps/map.pcd"/> | ||
<arg name="rviz_config" default="$(find open3d_slam_ros)/rviz/visualizer_node.rviz"/> | ||
<arg name="launch_rviz" default="true"/> | ||
|
||
<node name="pointcloud_visualizer" pkg="open3d_slam_ros" type="visualizer_node" output="screen"> | ||
<param name="pcd_file_path" value="$(arg pcd_file_path)"/> | ||
</node> | ||
|
||
<node name="rviz_viz_of_map" pkg="rviz" type="rviz" | ||
args="-d $(arg rviz_config)" | ||
if="$(arg launch_rviz)"> | ||
</node> | ||
|
||
</launch> |