forked from MIT-SPARK/Hydra
-
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.
* update launch files to new convention and set fixed attempt number for tf lookup * fix issue with can transform hanging * separate extrinsics and topology config * rename and update hydra launch files * fix uh2 extrinsics * add sparkal extrinsics Co-authored-by: Nathan Hughes <[email protected]>
- Loading branch information
1 parent
826762b
commit 130fe99
Showing
24 changed files
with
579 additions
and
143 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<launch> | ||
<arg name="sim_time_required" default="true"/> | ||
<param name="use_sim_time" value="$(arg sim_time_required)"/> | ||
|
||
<!-- TODO(nathan) fix this arg name --> | ||
<arg name="dataset_name" default="ade150_config"/> | ||
<arg name="semantic_map_dir" default="$(find semantic_recolor)/config/colors"/> | ||
<arg name="semantic_map_file" default="$(arg dataset_name).csv"/> | ||
<arg name="semantic_map_path" default="$(arg semantic_map_dir)/$(arg semantic_map_file)"/> | ||
|
||
<arg name="robot_name" default="sparkal1"/> | ||
|
||
<arg name="pointcloud_topic" value="/$(arg robot_name)/semantic_pointcloud"/> | ||
<arg name="use_gt_frame" default="true"/> | ||
<arg name="sensor_frame" default="$(arg robot_name)/forward_imu_optical_frame" if="$(arg use_gt_frame)"/> | ||
<arg name="sensor_frame" default="base_link" unless="$(arg use_gt_frame)"/> | ||
<arg name="world_frame" default="$(arg robot_name)/map"/> | ||
|
||
<include file="$(find hydra_utils)/launch/data_sources/simmons_jackal_pointcloud.launch" | ||
pass_all_args="true"/> | ||
|
||
<include file="$(find hydra_dsg_builder_ros)/launch/hydra.launch" pass_all_args="true"> | ||
<arg name="robot_id" default="0"/> | ||
<arg name="config_dir" default="$(find hydra_dsg_builder)/config/simmons_jackal"/> | ||
<arg name="dsg_output_dir" default="$(find hydra_dsg_builder)/output/simmons_jackal"/> | ||
<arg name="dsg_output_prefix" default="simmons_6"/> | ||
<arg name="reconstruction_config" default="$(find hydra_topology)/config/simmons_topology_config.yaml"/> | ||
<arg name="extrinsics" default="$(find hydra_topology)/config/extrinsics/$(arg robot_name).yaml"/> | ||
<arg name="rviz_dir" default="$(find hydra_dsg_builder_ros)/rviz"/> | ||
<arg name="rviz_file" default="simmons.rviz"/> | ||
<arg name="use_oriented_bounding_boxes" default="true"/> | ||
<arg name="typology_dir" default="$(find hydra_dsg_builder)/config/simmons_jackal"/> | ||
<arg name="typology_config" default="simmons_jackal_typology.yaml"/> | ||
</include> | ||
|
||
</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
Oops, something went wrong.