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

Bardo91's profile - activity

2021-03-15 06:15:53 -0500 received badge  Famous Question (source)
2021-02-12 15:34:06 -0500 received badge  Famous Question (source)
2019-10-07 10:31:26 -0500 received badge  Famous Question (source)
2018-04-29 01:18:16 -0500 received badge  Notable Question (source)
2018-02-21 05:40:53 -0500 received badge  Popular Question (source)
2018-02-21 03:17:37 -0500 received badge  Notable Question (source)
2018-02-20 08:00:15 -0500 edited question Moveit classes inside a class

Moveit classes inside a class Hi I am trying to wrap MoveIt classes inside another class (which is a backend in a librar

2018-02-20 07:10:57 -0500 edited question Moveit classes inside a class

Moveit classes inside a class Hi I am trying to wrap MoveIt classes inside another class (which is a backend in a librar

2018-02-20 07:06:04 -0500 commented question Moveit classes inside a class

I am sorry. I added the explanation in the question. And some examples of outputs.

2018-02-20 07:05:47 -0500 edited question Moveit classes inside a class

Moveit classes inside a class Hi I am trying to wrap MoveIt classes inside another class (which is a backend in a librar

2018-02-20 07:05:12 -0500 edited question Moveit classes inside a class

Moveit classes inside a class Hi I am trying to wrap MoveIt classes inside another class (which is a backend in a librar

2018-02-20 07:03:08 -0500 commented question Moveit classes inside a class

I am sorry. I added the explanation in the question.

2018-02-20 07:02:23 -0500 edited question Moveit classes inside a class

Moveit classes inside a class Hi I am trying to wrap MoveIt classes inside another class (which is a backend in a librar

2018-02-20 06:26:54 -0500 edited question Moveit classes inside a class

Moveit classes inside a class Hi I am trying to wrap MoveIt classes inside another class (which is a backend in a librar

2018-02-20 06:26:12 -0500 edited question Moveit classes inside a class

Moveit classes inside a class Hi I am trying to wrap MoveIt classes inside another class (which is a backend in a librar

2018-02-20 06:26:05 -0500 edited question Moveit classes inside a class

Moveit classes as class members Hi I am trying to wrap MoveIt classes inside another class (which is a backend in a libr

2018-02-20 06:26:05 -0500 received badge  Editor (source)
2018-02-20 06:25:17 -0500 asked a question Moveit classes inside a class

Moveit classes as class members Hi I am trying to wrap MoveIt classes inside another class (which is a backend in a libr

2018-01-12 05:50:09 -0500 commented answer unable to solve "nvcc fatal: A single input file is required for a non-link phase when an outputfile is specified" error

To me too! Mark it as the answer :)

2015-04-05 15:48:22 -0500 received badge  Notable Question (source)
2015-03-18 10:24:13 -0500 commented answer ROS fuerte - check subscriber

That's it. Thank you very much. I put the ticket.

2015-03-18 09:10:15 -0500 received badge  Popular Question (source)
2015-03-18 07:32:25 -0500 commented question Compile roscpp without ros

I made my own makefile compiling roscpp and including the resulting library where I wanted to.

2015-03-18 06:47:33 -0500 commented question Compile roscpp without ros

I've solved the trouble. But yout link is very useful, thanks.

2015-03-18 06:46:41 -0500 asked a question ROS fuerte - check subscriber

Hi,

I want to check if a subscriber has subscribe properly to a topic. I read in documentation ( http://docs.ros.org/api/roscpp/html/c... ) that this is made checking nodehandle but compiler sais that cant convert nodehandle to bool.

    ros::NodeHandle n;
    /* ... */
    intruder_sub[i]=n.subscribe(topicname.c_str(), 0,Intruder_StateCallBack);
    if(n){
        cout << "cant subscribe to " << topicname << endl;
        assert(false);
    }

What I'm doing wrong? Thanks in advance.

2015-03-18 06:46:05 -0500 asked a question ROS fuerte - check subscriber

Hi,

I want to check if a subscriber has subscribe properly to a topic. I read in documentation ( http://docs.ros.org/api/roscpp/html/c... ) that this is made checking nodehandle but compiler sais that cant convert nodehandle to bool.

    ros::NodeHandle n;
    /* ... */
    intruder_sub[i]=n.subscribe(topicname.c_str(), 0,Intruder_StateCallBack);
    if(n){
        cout << "cant subscribe to " << topicname << endl;
        assert(false);
    }

What I'm doing wrong? Thanks in advance.

2015-02-24 05:51:15 -0500 received badge  Notable Question (source)
2015-02-24 04:37:16 -0500 received badge  Student (source)
2015-02-24 03:45:39 -0500 answered a question ROS fuerte rosmake -std=c++11 compile error

ROS fuerte do not use all about c++11. Moving to ROS indigo fix the problem.

2015-02-24 03:44:39 -0500 received badge  Enthusiast
2015-02-23 07:24:06 -0500 received badge  Popular Question (source)
2015-02-23 07:08:52 -0500 commented question Compile roscpp without ros

That's why I downloaded only roscpp module. But I'm not sure how to compile it, in order to use it in my code. Thanks in advance.

2015-02-23 07:07:48 -0500 commented question Compile roscpp without ros

Ok, I'll try to be brief. Basically I want to get information about an UAV simulated with GAZEBO. Then I process it and sendback to the UAV references to command it. I wouldn't like to include whole ROS in my project only for a node subscription and advertising.

2015-02-23 06:49:32 -0500 received badge  Popular Question (source)
2015-02-23 02:13:27 -0500 asked a question Compile roscpp without ros

Hello, I'm trying to compile roscpp without using the rest of ROS (I only need to subscribe to a node but the one that own that uses an old version of ROS and I couldn't integrate my program with his due to compilation troubles). I downloaded the source code from git ( https://github.com/ros/ros_comm ) and now I need to compile it, but Cmake throw me errors:

 INFOBuilding GTest from source.
 TODO: implement add_roslaunch_check() in rostest-extras.cmake.
 CMake Error at CMakeLists.txt:8 (catkin_package_xml):
     Unknown CMake command "catkin_package_xml".

How can I build it? I'm calling cmake CMakeList.txt, but it doesn't work.

2015-02-18 14:52:21 -0500 asked a question ROS fuerte rosmake -std=c++11 compile error

Hi, I was trying to compile a node that uses a library that needs c++11 flag (It uses std::function and nullptr among other features).

Here is de outpulog: https://www.dropbox.com/s/mr8gltnrdn1...

But summarizing:

               from /usr/include/c++/4.8/bits/stl_algo.h:62,
               from /usr/include/c++/4.8/algorithm:62,
               from /usr/include/boost/math/tools/config.hpp:16,
               from /usr/include/boost/math/special_functions/round.hpp:13,
               from /opt/ros/fuerte/include/ros/time.h:58,
               from /opt/ros/fuerte/include/ros/ros.h:38,
               from /home/bardo91/programming/EC-SAFEMOBIL/ros/PatrollingCV/uav_vision/src/uav_vision_node.cpp:9:
     /usr/include/c++/4.8/bits/stl_construct.h: In instantiation of ‘void std::_Construct(_T1*, _Args&& ...) [with _T1 = actionlib_msgs::GoalStatus_<std::allocator<void> >; _Args = {actionlib_msgs::GoalStatus_<std::allocator<void> >&}]’:
       /usr/include/c++/4.8/bits/stl_uninitialized.h:75:53:   required from ‘static _ForwardIterator std::__uninitialized_copy<_TrivialValueTypes>::__uninit_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = actionlib_msgs::GoalStatus_<std::allocator<void> >*; _ForwardIterator = actionlib_msgs::GoalStatus_<std::allocator<void> >*; bool _TrivialValueTypes = false]’

     /usr/include/c++/4.8/bits/stl_uninitialized.h:117:41:   required from ‘_ForwardIterator std::uninitialized_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = actionlib_msgs::GoalStatus_<std::allocator<void> >*; _ForwardIterator = actionlib_msgs::GoalStatus_<std::allocator<void> >*]’
      /usr/include/c++/4.8/bits/stl_uninitialized.h:258:63:   required from ‘_ForwardIterator std::__uninitialized_copy_a(_InputIterator, _InputIterator, _ForwardIterator, std::allocator<_Tp>&) [with _InputIterator = actionlib_msgs::GoalStatus_<std::allocator<void> >*; _ForwardIterator = actionlib_msgs::GoalStatus_<std::allocator<void> >*; _Tp = actionlib_msgs::GoalStatus_<std::allocator<void> >]’

And so on... It's not only for the library, I would like to use new features of c++, but I don't know what to do to fix it. Can anybody help me?

Thank in advance

2015-02-18 14:14:23 -0500 received badge  Scholar (source)
2015-02-18 14:14:20 -0500 received badge  Supporter (source)
2014-11-17 14:16:41 -0500 received badge  Famous Question (source)
2014-06-03 01:54:33 -0500 received badge  Notable Question (source)
2014-06-02 09:33:43 -0500 received badge  Popular Question (source)
2014-03-05 10:24:40 -0500 asked a question ROS windows crash while getting NodeHandler

Hi,

I've got a trouble using ROS in Windows :(. I'm with the publisher and subscriber tutorial in windows. I compiled it fine but while executing it, it crash due to an access violation...

If I execute it with out executing in a console "roscore" it says that cant connect to master

So then I tried with roscore (As I read, it's always necessary). But then I get the access violation inside the line: "ros::NodeHandle n;"

If I debugged inside i got that crash in the line "initRemappings(remappings);"

Can anyone helps me?

Thanks in advance!!

2014-02-22 02:28:52 -0500 answered a question unresolved external symbol "bool ros::console::g_initialized"

Hi Aperez,

I've got the same trouble compiling my code, I added both ros and rosdep includes and rosconsole.lib, but it still crashing while linking. I'm using vs12. I tried with the preprocessor definitions but I got the same. How did you finally manage the error?

Thanks in advance