forked from UZ-SLAMLab/ORB_SLAM3
-
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.
Make it run with Closedloop Trajectory Tracking Benchmark
- Loading branch information
Showing
28 changed files
with
1,904 additions
and
552 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<launch> | ||
|
||
<arg name="path_slam_config" default = "/home/yanwei/closedloop_ws/src/ORB_Data/"/> | ||
<arg name="path_track_logging" default = "/tmp/orb3"/> | ||
<arg name="num_all_feature" default = "400" /> | ||
<arg name="do_rectify" default = "false" /> | ||
<arg name="do_vis" default = "0" /> | ||
<arg name="slam_pose_topic" default="/visual/pose"/> | ||
|
||
|
||
<!-- call baselin ORB-SLAM for vision-based state estimation --> | ||
<node pkg="ORB_SLAM3" type="Stereo" name="visual_slam" | ||
args="$(arg path_slam_config)/ORBvoc.bin | ||
$(arg path_slam_config)/TSRB_yaml/d435i_orb3.yaml | ||
$(arg num_all_feature) | ||
$(arg do_rectify) | ||
$(arg do_vis) | ||
/camera/infra1/image_rect_raw | ||
/camera/infra2/image_rect_raw | ||
$(arg path_track_logging)" output="screen"> | ||
<remap from="ORB_SLAM/camera_pose_in_imu" to="$(arg slam_pose_topic)"/> | ||
</node> | ||
|
||
</launch> |
27 changes: 27 additions & 0 deletions
27
Examples_old/ROS/ORB_SLAM3/launch/ORB3_d435i_inertial.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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<launch> | ||
|
||
<arg name="path_slam_config" default = "/home/yanwei/closedloop_ws/src/ORB_Data/"/> | ||
<arg name="path_track_logging" default = "/tmp/orb3_imu"/> | ||
<arg name="num_all_feature" default = "400" /> | ||
<arg name="do_rectify" default = "false" /> | ||
<arg name="do_vis" default = "0" /> | ||
<arg name="slam_pose_topic" default="/visual/pose"/> | ||
<arg name="imu_topic" default="/camera/imu"/> | ||
|
||
|
||
<!-- call baselin ORB-SLAM for vision-based state estimation --> | ||
<node pkg="ORB_SLAM3" type="Stereo_Inertial" name="visual_slam" | ||
args="$(arg path_slam_config)/ORBvoc.bin | ||
$(arg path_slam_config)/TSRB_yaml/d435i_orb3_inertial.yaml | ||
$(arg num_all_feature) | ||
$(arg do_rectify) | ||
$(arg do_vis) | ||
/camera/infra1/image_rect_raw | ||
/camera/infra2/image_rect_raw | ||
$(arg path_track_logging)" output="screen"> | ||
<remap from="ORB_SLAM/camera_pose_in_imu" to="$(arg slam_pose_topic)"/> | ||
<remap from="/imu" to="$(arg imu_topic)"/> | ||
</node> | ||
|
||
</launch> | ||
|
16 changes: 16 additions & 0 deletions
16
Examples_old/ROS/ORB_SLAM3/launch/gazebo_ORB3_stereo.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<launch> | ||
|
||
<arg name="path_slam_config" default = "/home/yipuzhao/ros_workspace/package_dir/ORB_Data/"/> | ||
<arg name="path_track_logging" default = "/mnt/DATA/tmp/ClosedNav/debug"/> | ||
<arg name="num_all_feature" default = "1600" /> | ||
<arg name="do_rectify" default = "true" /> | ||
<arg name="do_vis" default = "0" /> | ||
<arg name="slam_pose_topic" default="/visual/pose"/> | ||
|
||
|
||
<!-- call baselin ORB-SLAM for vision-based state estimation --> | ||
<node pkg="ORB_SLAM3" type="Stereo" name="visual_slam" args="$(arg path_slam_config)/ORBvoc.bin $(arg path_slam_config)/Gazebo_yaml/pinhole_stereo_orb3.yaml $(arg num_all_feature) $(arg do_rectify) $(arg do_vis) /multisense_sl/camera/left/image_raw /multisense_sl/camera/right/image_raw $(arg path_track_logging)" output="screen"> | ||
<remap from="ORB_SLAM/camera_pose_in_imu" to="$(arg slam_pose_topic)"/> | ||
</node> | ||
|
||
</launch> |
27 changes: 27 additions & 0 deletions
27
Examples_old/ROS/ORB_SLAM3/launch/gazebo_ORB3_stereo_inertial.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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<launch> | ||
|
||
<arg name="path_slam_config" default = "/home/yanwei/closedloop_ws/src/ORB_Data/"/> | ||
<arg name="path_track_logging" default = "/mnt/DATA/tmp/ClosedNav/debug"/> | ||
<arg name="num_all_feature" default = "400" /> | ||
<arg name="do_rectify" default = "false" /> | ||
<arg name="do_vis" default = "0" /> | ||
<arg name="slam_pose_topic" default="/visual/pose"/> | ||
<arg name="imu_topic" default="/imu0"/> | ||
|
||
|
||
<!-- call baselin ORB-SLAM for vision-based state estimation --> | ||
<node pkg="ORB_SLAM3" type="Stereo_Inertial" name="visual_slam" | ||
args="$(arg path_slam_config)/ORBvoc.bin | ||
$(arg path_slam_config)/Gazebo_yaml/pinhole_stereo_orb3_inertial.yaml | ||
$(arg num_all_feature) | ||
$(arg do_rectify) | ||
$(arg do_vis) | ||
/multisense_sl/camera/left/image_raw | ||
/multisense_sl/camera/right/image_raw | ||
$(arg path_track_logging)" output="screen"> | ||
<remap from="ORB_SLAM/camera_pose_in_imu" to="$(arg slam_pose_topic)"/> | ||
<remap from="/imu" to="$(arg imu_topic)"/> | ||
<param name="align_map_with_odom" value="true" /> | ||
</node> | ||
|
||
</launch> |
Oops, something went wrong.