Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 부분공간
- webots
- Linux
- YoLO
- ubuntu
- CuDNN
- amcl
- Installation
- G++
- ax200
- 촉각센서
- roslaunch
- Gazebo
- CUDA
- rqt
- sources.list
- Kinetic
- linetracing
- error
- 전이학습
- roslib
- opencv
- autorace
- turtlebot3
- RGB-D
- gcc
- darknet_ros
- ROS
- FreeCAD
- turtlebot
Archives
- Today
- Total
기술 성공, 실패 기록소
ros create map 본문
728x90
followbot_slam.launch
<launch>
<!-- robot_description -->
<arg name="model" default="$(find xacro)/xacro --inorder '$(find followbot_mechanum)/urdf/followbot.urdf.xacro'" />
<param name="robot_description" command="$(arg model)" />
<!-- robot_state_publisher -->
<node name="joint_state_publisher" pkg="joint_state_publisher" type="joint_state_publisher" />
<node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher"/> <!-- publish TF that contains joint's pose inform -->
<!-- Gmapping -->
<arg name="set_base_frame" default="base_footprint"/>
<arg name="set_odom_frame" default="odom"/>
<arg name="set_map_frame" default="map"/>
<node pkg="gmapping" type="slam_gmapping" name="followbot_slam_gmapping" output="screen">
<param name="base_frame" value="$(arg set_base_frame)"/>
<param name="odom_frame" value="$(arg set_odom_frame)"/>
<param name="map_frame" value="$(arg set_map_frame)"/>
<rosparam command="load" file="$(find followbot_mechanum)/config/gmapping_params.yaml" />
</node>
<node pkg="rviz" type="rviz" name="rviz" required="true" args="-d $(find followbot_mechanum)/rviz/followbot_mechanum_2.rviz"/>
</launch>
http://wiki.ros.org/slam_gmapping/Tutorials/MappingFromLoggedData
slam_gmapping/Tutorials/MappingFromLoggedData - ROS Wiki
Note: This tutorial assumes that you have completed the previous tutorials: ROS tutorials. Please ask about problems and questions regarding this tutorial on answers.ros.org. Don't forget to include in your question the link to this page, the versions of y
wiki.ros.org
-맵저장
rosrun map_server map_saver -f <map_name>
'followbot' 카테고리의 다른 글
realsense camera d435, resolution, frame rate (0) | 2021.08.17 |
---|---|
how to make blank map (0) | 2021.08.01 |
ubuntu 18.04, install openpose (0) | 2021.07.27 |
install teb_local_planner (0) | 2021.07.23 |
ubuntu 16.04, install openpose (0) | 2021.07.23 |