Hector exploration issue

asked 2016-10-31 10:14:18 -0500

EdCherie gravatar image

Hey guys,

I have manged to send the velocities from hector exploration controller to start mapping the room. However, i have encountered some issues with it. I attach two links below, first is what kind of movement i experience, and second is the one i am trying to aim to: https://www.youtube.com/watch?v=A0CHc... <--- our robot, trying to map the room while using exploration node from hector_navigation package. https://www.youtube.com/watch?v=A0CHc... <--- video from ros wiki, where the movement of the robot is much more smoother compared to mine. I do understand that my robot uses skidsteering compared to the one that was in robocup where all wheels can turn. However, i don't think it is only because of that, so i was maybe thinking it might be with some parameters i have. Worth noting, robot doesnt have odometry, i only rely on laser scan data. Robot is controlled by arduino. Additional question, when it explores, even though the area is mapped, when looking at rviz, robot keeps running and running. Do i need to stop the movement myself or it does it until completely explores (in my case it seemed it did the same route 2 times at least)? Thanks in advance for the answer. My hector_slam launch file:

<launch>

<param name="/use_sim_time" value="false"/>ros

<node pkg="rviz" type="rviz" name="rviz" 
args="-d $(find hector_slam_launch)/rviz_cfg/mapping_demo.rviz"/>

<include file="$(find hector_mapping)/launch/mapping_default.launch"/>

<include file="$(find hector_geotiff)/launch/geotiff_mapper.launch">
<arg name="trajectory_source_frame_name" value="scanmatcher_frame"/> 
</include>

</launch>

My hector_mapping launch file:

 <?xml version="1.0"?>

    <launch>
      <arg name="tf_map_scanmatch_transform_frame_name" default="scanmatcher_frame"/>
      <arg name="base_frame" default="base_link"/>
      <arg name="odom_frame" default="base_link"/>
      <arg name="pub_map_odom_transform" default="tr

ue"/>
  <arg name="scan_subscriber_queue_size" default="5"/>
  <arg name="scan_topic" default="scan"/>
  <arg name="map_size" default="3072"/>

  <node pkg="hector_mapping" type="hector_mapping" name="hector_mapping" output="screen">

        <!-- Frame names -->
        <param name="map_frame" value="map" />


 <param name="base_frame" value="base_link" />
    <param name="odom_frame" value="base_link" />

    <!-- Tf use -->
            <param name="use_tf_scan_transformation" value="true"/>
            <param name="use_tf_pose_start_estimate" value="false"/>
            <param name="pub_map_odom_transform" value="$(arg pub_map_odom_transform)"/>

        <!-- Map size / start point -->

    <param name="map_resolution" value="0.025"/>
    <param name="map_size" value="1024"/>

<param name="map_start_x" value="0.5"/>
<param name="map_start_y" value="0.5" />
<param name="map_multi_res_levels" value="2" />

<!-- Map update parameters -->
<param name="update_factor_free" value="0.4"/>
<param name="update_factor_occupied" value="0.9" />    
<param name="map_update_distance_thresh" value="0.1"/>
<param name="map_update_angle_thresh" value="0.01" />

<param name="map_pub_period" value="2.0" />
<param name="laser_min_dist" value = "0.1" />
<param name="laser_max_dist" value = "5.0" />
<param name="laser_z_min_value" value = "-1.0" />
<param name="laser_z_max_value" value = "1.0" />

<!-- Advertising config --> 
<param name="advertise_map_service" value="true"/>

      <param name="scan_subscriber_queue_size" value="$(arg scan_subscriber_queue_size)"/>
        <param name="scan_topic" value="$(arg scan_topic)"/>

        <!-- Debug parameters -->
        <!--
          <param name="output_timing" value="false"/>
          <param name="pub_drawings" value="true"/>
          <param name="pub_debug_output" value="true"/>
        -->
        <param name="tf_map_scanmatch_transform_frame_name" value="$(arg tf_map_scanmatch_transform_frame_name)" />
      </node>

    <node pkg="tf" type="static_transform_publisher" name="base_to_laser_broadcaster"      args="0 0 0 0 0 0 /base_link /laser 100" /> 

    </launch>

Then my ... (more)

edit retag flag offensive close merge delete