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

Dark-Valentine's profile - activity

2016-11-17 14:55:01 -0500 received badge  Good Question (source)
2014-05-29 12:38:43 -0500 received badge  Nice Question (source)
2014-05-29 12:38:38 -0500 received badge  Great Answer (source)
2014-05-29 12:38:38 -0500 received badge  Guru (source)
2013-09-05 15:06:03 -0500 received badge  Enlightened (source)
2013-09-05 15:06:03 -0500 received badge  Good Answer (source)
2013-04-10 23:57:47 -0500 received badge  Nice Answer (source)
2012-11-18 22:52:55 -0500 received badge  Famous Question (source)
2012-09-27 00:50:35 -0500 received badge  Popular Question (source)
2012-09-27 00:50:35 -0500 received badge  Notable Question (source)
2012-09-27 00:50:35 -0500 received badge  Famous Question (source)
2012-07-23 21:36:14 -0500 received badge  Self-Learner (source)
2012-07-23 21:36:14 -0500 received badge  Teacher (source)
2012-07-23 05:25:45 -0500 received badge  Student (source)
2012-07-23 04:14:04 -0500 answered a question ros::package::getPath() Problem

The problem is solved...

It seems that the roslib package isn't a dependency of roscpp anymore. Adding the roslib package as dependency to my package makes it linkable.

roscpp manifest.xml in electric

...
<depend package="roslib"/>
...

roscpp manifest.xml in fuerte

<package>
  <description brief="ROS C++ client library">

...

  </description>
  <author>Morgan Quigley mquigley@cs.stanford.edu, Josh Faust jfaust@willowgarage.com, Brian Gerkey gerkey@willowgarage.com, Troy Straszheim straszheim@will$
  <license>BSD</license>
  <review status="Doc reviewed"/>
  <url>http://ros.org/wiki/roscpp</url>
  <depend package="roslang"/>
  <export>
    <cpp cflags="`PKG_CONFIG_PATH=${prefix}/../../lib/pkgconfig pkg-config --cflags roscpp`"
         lflags="`PKG_CONFIG_PATH=${prefix}/../../lib/pkgconfig pkg-config --libs roscpp`"/>
    <roslang cmake="${prefix}/rosbuild/roscpp.cmake"/>
  </export>
  <rosdep name="pkg-config"/>

</package>

Thanks anyway!

2012-07-23 03:44:26 -0500 asked a question ros::package::getPath() Problem

Hey there,

i've a problem using the getPath() function from roslib package. I need the package path to read out some images for a gui. In ROS Electric the code snippet below works, but since the import to ROS Fuerte I get following error while linking the package:

...RoombaDashboard.cpp:43: undefined reference to `ros::package::getPath(std::basic_string<char, std::char_traits<char="">, std::allocator<char> > const&)'

#include <ros/package.h>

...

/* Load PNGs */
wxString imgPath = wxString::FromAscii((
    ros::package::getPath("roomba_dashboard") + "/gui/").c_str());

Does anyone have an idea why this error occurs!? The source code seems to be right...

Thank you und best regards Stefan

2012-04-23 19:25:34 -0500 received badge  Notable Question (source)
2011-08-17 19:39:47 -0500 received badge  Popular Question (source)
2011-04-13 01:43:37 -0500 received badge  Taxonomist
2011-03-24 09:53:46 -0500 marked best answer Sample_NIUserTracker in openni_kinect?

The new stack doesn't have a standalone program for tracking users. Maybe because it's not a part of ROS i.e. a standalone. You might have to use the old binary in the "ni" stack.

roscd ni
cd openni/bin/
./Sample-NiUserTracker

2011-03-11 20:05:35 -0500 asked a question Sample_NIUserTracker in openni_kinect?

Hey all,

where can i find the Sample-NiUserTracker Viewer in the new kinect stack?
The openni_tracker works fine and i can see the skeleton tranformations in rviz,
but I miss the GUI Viewer for easier people tracking.

Thanks