Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
galileo navigation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
publish
galileo navigation
Commits
88a72e6f
Commit
88a72e6f
authored
Jul 06, 2020
by
Test
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add camera type and update params
parent
acbbac59
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
7 deletions
+10
-7
config/base_local_planner_params.yaml
config/base_local_planner_params.yaml
+5
-5
launch/slam.launch
launch/slam.launch
+5
-2
No files found.
config/base_local_planner_params.yaml
View file @
88a72e6f
...
...
@@ -6,15 +6,15 @@ latch_xy_goal_tolerance: true
ADDWAPlannerROS
:
acc_lim_x
:
1.5
acc_lim_y
:
0
acc_lim_th
:
8
max_
trans_vel
:
0.5
min_
trans_vel
:
0.0
acc_lim_th
eta
:
8
max_
vel_trans
:
0.5
min_
vel_trans
:
0.0
max_vel_x
:
0.5
min_vel_x
:
0.0
max_vel_y
:
0
min_vel_y
:
0
max_
rot_vel
:
0.5
min_
rot_vel
:
-0.5
max_
vel_theta
:
0.5
min_
vel_theta
:
-0.5
yaw_goal_tolerance
:
0.07
xy_goal_tolerance
:
0.1
...
...
launch/slam.launch
View file @
88a72e6f
...
...
@@ -3,7 +3,10 @@
<param name="enableMoveFlag" value="true"/>
</node>
<!-- 使用双目导航 -->
<include file="$(find ORB_SLAM2)/launch/run_multi.launch" />
<include file="$(find ORB_SLAM2)/launch/run_multi.launch" if="$(eval camera_type == 'multi')"/>
<!-- 使用双目前摄像头导航 -->
<include file="$(find ORB_SLAM2)/launch/run_front.launch" if="$(eval camera_type == 'front')"/>
<!-- 使用单目导航 -->
<!-- <include file="$(find ORB_SLAM2)/launch/run.launch" /> -->
<include file="$(find ORB_SLAM2)/launch/run.launch" if="$(eval camera_type == 'mono')"/>
</launch>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment