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

how to detect legs with leg_detector and urg_node with visualisation in rviz

asked 2015-11-18 04:03:57 -0500

kkalicki gravatar image

updated 2015-11-20 02:42:49 -0500

i've started the leg_detector and the urg_node with a launch file:

<launch>
  <node pkg="leg_detector" type="leg_detector" name="leg_detector" args="scan:=scan $(find leg_detector)/config/trained_leg_detector.yaml" output="screen"/>
  <node name="urg_node" pkg="urg_node" type="urg_node" output="screen" args="/most_intense:=/scan">
            <param name="ip_address" value="192.168.0.10"/> 
            <param name="frame_id" value="base_laser"/> 
  </node>
</launch>

How can start the leg detection right and how can i visualize them in rviz? i can see with rostopic echo /scan that the urg_node is publishing the measures and i can visualize them in rviz. The visualization_marker from leg_detector doesn't publish anything.

i get the warning in the console:

[ WARN] [1448009011.893469224]: MessageFilter [target=odom_combined ]: Dropped 100.00% of messages so far. Please turn the [ros.leg_detector.message_notifier] rosconsole logger to DEBUG for more information.

Thanks in advance

edit retag flag offensive close merge delete

Comments

Is there any output in the console? Does rostopic info scan show the nodes are properly connected?

David Lu gravatar image David Lu  ( 2015-11-19 17:01:24 -0500 )edit

I see the urg_node as publisher and the leg_detector as subscriber. I get the Warning: MessageFilter [target=odom_combined ]: Dropped 100.00% of messages so far. Please turn the [ros.leg_detector.message_notifier] rosconsole logger to DEBUG for more information.

kkalicki gravatar image kkalicki  ( 2015-11-20 02:40:55 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
2

answered 2015-11-20 05:35:34 -0500

Chrissi gravatar image

Change the fixed_frame parameter to reflect the real name of your odometry tf frame. In my case that was just odom. Please have a look at your tf treet to find the frame you want. You can then change it using dynamic reconfigure or just add it in the launch file:

<node pkg="leg_detector" type="leg_detector" name="leg_detector" args="scan:=scan $(find leg_detector)/config/trained_leg_detector.yaml" output="screen">
    <param name="fixed_frame" type="string" value="odom" />
</node>

If you don't have an odometry frame just use the one of the laser and see if that works for you.

edit flag offensive delete link more

Comments

Thank you, had to change the fixed_frame from leg_detector to the frame_id from the urg_node

kkalicki gravatar image kkalicki  ( 2015-11-27 02:11:59 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2015-11-18 04:03:57 -0500

Seen: 1,136 times

Last updated: Nov 20 '15