ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
1

amcl no laser data received

asked 2013-01-10 09:20:32 -0500

hkaraoguz gravatar image

updated 2014-01-28 17:14:47 -0500

ngrennan gravatar image

Hi All,

We were trying to run the amcl module of ROS Fuerte on Ubuntu 12.04. We have connected the Hokuyo laser range finder sensor and started running hokuyo node. We have also created the map and tf publishers. After starting these required nodes we have executed the following command:

rosrun amcl amcl

The node starts to run and it just gives a warning about not being able to use Hokuyo for multirobot configurations which we also don't need. After this warning we constantly receive (every 15 seconds, a callback is established in the source code) a warning about not receiving laser data so no pose update can be done. It is very strange because we can visualize the laser scan data using rviz and also rxgraph shows that amcl is subscribed to /scan topic. I have googled about this issue but couldn't find any answers. Any help will be greatly appreciated.

edit retag flag offensive close merge delete

Comments

1

are you subscribing to the topic /scan when visualizing the data in rviz? Maybe amcl is subscribing to /scan, but you are publishing the scan data on another topic

Martin Peris gravatar image Martin Peris  ( 2013-01-10 13:53:01 -0500 )edit

After your comment, using instructions from the navigation tutorials http://www.ros.org/wiki/navigation/Tutorials/RobotSetup/Sensors I built a node that publishes artificial scans but it still complains about laser data. Is it related to robot movement? because we dont move the robot right now

hkaraoguz gravatar image hkaraoguz  ( 2013-01-15 04:34:34 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
2

answered 2013-01-18 13:51:41 -0500

Brian Gerkey gravatar image

I would guess that there's a problem in your tf tree. The laser callback in amcl is at the end of a tf message filter that will fire when the incoming scan can be successfully transformed into the odom frame. It would seem that that condition is never satisfied.

I suspect that if you try to visualize the laser data in rviz in whatever frame you've specified as the odom_frame for amcl, you won't see any data there, either.

The solution depends on what exactly is wrong in your tf tree. Try visualizing transforms in rviz.

edit flag offensive delete link more

Comments

Thank you so much for your answer. As you have said we have rechecked the transform tree and solved the problem. I have just one question. Is base_footprint and base_link are the same?. Thanks again

hkaraoguz gravatar image hkaraoguz  ( 2013-01-21 21:52:27 -0500 )edit

Hello. I have the same problem as u. How did you solve it??

Astronaut gravatar image Astronaut  ( 2013-03-24 14:28:25 -0500 )edit

Hi, We have written a tf publisher that transforms laser coordinates to base_link coordinates but the frame id of the laser was wrong so we have corrected it. And then we have also added a static publisher that publishes base_link to base_footprint. Basically it is just a 0 0 0 0 0 0 transformation.

hkaraoguz gravatar image hkaraoguz  ( 2013-03-31 20:23:57 -0500 )edit

Question Tools

Stats

Asked: 2013-01-10 09:20:32 -0500

Seen: 1,723 times

Last updated: Jan 18 '13