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

bug in launch file vision_visp stack

asked 2012-10-19 03:07:06 -0500

roskidos gravatar image

Hi, I'm debugging and trying to run a launch file in vision_visp stack which is tutorial.launch

  <node pkg="visp_tracker" type="client" name="tracker_mbt_client">
    <param name="model_path" value="package://visp_tracker/models" />
    <param name="model_name" value="laas-box" />

in parameter "model_path" value is "package://something" -> what's this syntax?? I've replaced with the full path but still didn't work

I believe this is the problem, because from the output:

process[tf_localization-6]: started with pid [18717]
terminate called after throwing an instance of 'std::runtime_error'
  what():  Failed to load the model /home/airlab/SONLE/stacks/vision_visp/visp_tracker/models/laas-box/laas-box.wrl
Do you use resource_retriever syntax?
I.e. replace /my/model/path by file:///my/model/path

I've already fixed one bug in this launch file

 <node pkg="rosbag" type="rosbag" name="rosbag" args="play --clock -l
  $(find visp_tracker)/bag/tutorial-static-box.bag"/>

where type="rosbag" is not correct, there's no rosbag executable in the package but "play" => changed to:

<node pkg="rosbag" type="play" name="rosbag_routine" args=" --clock -l
      $(find visp_tracker)/bag/tutorial-static-box.bag"/>
edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2012-10-19 04:02:40 -0500

Lorenz gravatar image

So what exactly is your question?

Changing package:// to a full path is always a bad idea. If you want roslaunch to put in the path to a package, use $(find package). URIs of the form package:// are normally resolved using resource_retriever inside the node.

If you have bug reports or patches, it's normally best to file a ticket at the package's bug tracker.

edit flag offensive delete link more

Comments

"normally best to file a ticket at the package's bug tracker" -> thank you for this guide!

roskidos gravatar image roskidos  ( 2012-10-19 05:20:12 -0500 )edit

"package://something -> what's this syntax" -> I mean this question. Is this the correct syntax?? from where? resource_retriever?

roskidos gravatar image roskidos  ( 2012-10-19 05:22:14 -0500 )edit

I think I've just seen the syntax in resource_retriever page of ROS. Thank you!!

roskidos gravatar image roskidos  ( 2012-10-19 05:36:25 -0500 )edit
1

I've tried to change from <!--param name="model_path" value="package://visp_tracker/models" /--> to <param name="model_path" value="$(find visp_tracker)/models" /> but still no work

roskidos gravatar image roskidos  ( 2012-10-19 05:50:49 -0500 )edit

Hey, I am having the same problem...any solution for this ?

adreno gravatar image adreno  ( 2014-06-27 14:02:45 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2012-10-19 03:07:06 -0500

Seen: 233 times

Last updated: Oct 19 '12