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

Maarten's profile - activity

2019-12-18 08:44:55 -0500 commented question return value from subscriber callback rospy

If you want to wait for the response of the callback function, you can use a service, but I agree with @gvdhoorn that th

2019-06-23 06:41:52 -0500 commented question odom frame in navsat_transform_node in case of quasi mobile platform

@akosodry I missed your visual odometry question. Visual odometry can more or less replace an encoder input (or can be u

2019-06-23 06:35:49 -0500 answered a question odom frame in navsat_transform_node in case of quasi mobile platform

As per @akosodry 's request, a summary of our comments discussion as an answer: I can't help you with the urdf, but the

2019-06-22 14:40:01 -0500 commented question odom frame in navsat_transform_node in case of quasi mobile platform

I think you only need some filtering on the GPS position and the magnetometer orientation (I don't think the acceleratio

2019-06-20 06:32:57 -0500 commented question odom frame in navsat_transform_node in case of quasi mobile platform

If you want to estimate both the map->odom and the odom->base_link transformations, you need two robot_localizatio

2019-06-20 06:23:48 -0500 commented question odom frame in navsat_transform_node in case of quasi mobile platform

If I understand it right, you have a mobile base that drives around randomly (well, not randomly, but you don't know any

2019-06-20 02:39:49 -0500 commented question odom frame in navsat_transform_node in case of quasi mobile platform

I can't help you with the urdf, but the odom frame between the map (or world) and the base_link frame gives you both a c

2018-12-18 07:54:26 -0500 received badge  Enlightened (source)
2018-12-18 07:54:26 -0500 received badge  Good Answer (source)
2018-10-08 09:57:19 -0500 received badge  Nice Answer (source)
2018-07-20 07:54:32 -0500 received badge  Nice Answer (source)
2018-03-27 04:13:48 -0500 commented answer Is it possible to install ROS Indigo on an RPi3 using Ubuntu Mate 16.04?

I think so. gmapping and rtabmap are, but the only way to know for sure is to check all of them on the ROS website (http

2018-03-25 15:18:15 -0500 commented question Realsense cannot find the camera

The LIBUSB_ERROR_ACCESS error message on libusb_open makes me think the driver found the device, but the user running RO

2018-03-22 14:21:55 -0500 commented question Kinetic Kame vs. Lunar Loggerhead distribution

Why not start with the Kinetic Kame distribution and switch when you need to? Or if you just start learning ROS, you can

2018-03-22 14:07:59 -0500 answered a question How to publish integers values from a ROS node

Just create your own message file (as detailed in the Wiki). In your case, something like time timestamp int32 left_t

2018-03-21 15:54:16 -0500 commented question cv_bridge tutorial example not compiling in ROS Kinetic and Ubuntu 16.04

I also have ## OpenCV find_package(OpenCV REQUIRED) include_directories(${OpenCV_INCLUDE_DIRS}) in my CMakeLists.txt.

2018-03-21 15:53:41 -0500 commented question cv_bridge tutorial example not compiling in ROS Kinetic and Ubuntu 16.04

I also have ` OpenCV find_package(OpenCV REQUIRED) include_directories(${OpenCV_INCLUDE_DIRS}) in my CMakeLists.txt.

2018-03-21 15:53:22 -0500 commented question cv_bridge tutorial example not compiling in ROS Kinetic and Ubuntu 16.04

I also have ` OpenCV find_package(OpenCV REQUIRED) include_directories(${OpenCV_INCLUDE_DIRS}) in my CMakeLists.txt.

2018-03-21 15:53:08 -0500 commented question cv_bridge tutorial example not compiling in ROS Kinetic and Ubuntu 16.04

I also have ``` OpenCV find_package(OpenCV REQUIRED) include_directories(${OpenCV_INCLUDE_DIRS}) `` in my CMakeLists.t

2018-03-21 15:33:52 -0500 commented question cv_bridge tutorial example not compiling in ROS Kinetic and Ubuntu 16.04

If you can't get it to work, please post your CMakeLists.txt too.

2018-03-21 15:33:26 -0500 commented question cv_bridge tutorial example not compiling in ROS Kinetic and Ubuntu 16.04

My nodes using OpenCV have ${OpenCV_LIBS} in their target_link_libraries definition. I don't know what other OpenCV func

2018-03-21 15:28:17 -0500 commented question Package can't be build

Maybe it is interesting for future visitors to tell what the problem was.

2018-03-21 15:27:10 -0500 answered a question best practices: when to use parameter server and when not?

I use the parameter server for most configuration variables of my applications. The documentation mentions that it's too

2018-03-21 04:12:46 -0500 commented question c++ ROS-friendly state machine or similar

Makes sense. In that case, I would use the callbacks to update the state, and perform the necessary actions using either

2018-03-21 03:33:10 -0500 commented question Package can't be build

Can you post the full CMakeLists.txt and tell us which files are actually present (e.g. the output of the tree command)?

2018-03-21 03:21:40 -0500 commented question c++ ROS-friendly state machine or similar

Anyway, a possible approach is to implement the state function in a separate function. Every input is stored and at the

2018-03-21 03:18:25 -0500 commented question c++ ROS-friendly state machine or similar

Why are setSpeed, setAcceleration and Run services if you have to wait for an acknowledge using a subscriber? Did you wr

2018-03-20 10:40:05 -0500 commented question How to extract images from a bagfile properly

Not sure if there is a tool included or available, but if not, the rosbag API can help you to write a little tool in Pyt

2018-03-20 10:22:11 -0500 commented question c++ ROS-friendly state machine or similar

(that's why I put everything in comments and not as an answer: this is in my opinion the best answer for your question a

2018-03-20 10:20:57 -0500 commented question c++ ROS-friendly state machine or similar

this is probably not the best method. If possible, it's probably better to listen to the certain ROS callback, only call

2018-03-20 10:17:26 -0500 commented question c++ ROS-friendly state machine or similar

I suppose it should be possible to force your idea using threads and, if necessary, multiple callback queues (See Callba

2018-03-20 10:07:19 -0500 commented question Package can't be build

Does the file ros_tutorials_topic/src/ros_tutorials_topic_node.cpp (relative to your catkin workspace) actually exists?

2018-03-20 10:03:11 -0500 answered a question Is it possible to install ROS Indigo on an RPi3 using Ubuntu Mate 16.04?

ROS Indigo Igloo is mainly targeted at Ubuntu 14.04. It's probably possible to install it from source on Ubuntu 16.04, b

2018-03-14 11:49:18 -0500 commented question Invoking "make -j4 -l4" failed error

The error is not Invoking "make -j4 -l4" failed but /bin/sh: 1: pyrcc5: not found. Is pyrcc5 installed? (in Ubuntu, you

2018-03-14 09:58:32 -0500 commented question ROS Unreliable Cell Signal

To prevent that, you'll need to tag the messages before sending them. Or you can test that in such cases, the new comman

2018-03-14 09:58:32 -0500 received badge  Commentator
2018-03-14 03:26:14 -0500 commented question waiting for headers

Could be an IPv6 problem. Does this Unix & Linux question and answer help?

2018-03-13 10:45:21 -0500 edited answer Method for filtering out gps topic in a bag file

It should be quite easy to rewrite the bag using the rosbag Python API. The wiki gives you more information and some exa

2018-03-13 10:45:21 -0500 received badge  Editor (source)
2018-03-13 10:42:33 -0500 commented answer Method for filtering out gps topic in a bag file

You can either create a new bag with only the messages in the time intervals you want to keep, or you can write a custom

2018-03-13 08:45:16 -0500 answered a question Method for filtering out gps topic in a bag file

It should be quite easy to rewrite the bag using the rosbag Python API. The wiki gives you more information and some exa

2018-03-13 04:20:55 -0500 commented question ROS Unreliable Cell Signal

Stamping allows you to identify delayed messages, but doesn't stop the robot if you lose the connection. For that use @a

2018-03-13 04:02:52 -0500 received badge  Enthusiast
2018-03-12 13:41:51 -0500 commented question Publishing String from Terminal?

Your rostopic pub command seems to be correct (it sends "data: 'z'", not just "z" as tested in your if). We can't say mu

2018-03-12 11:47:06 -0500 commented question Publishing String from Terminal?

Your rostopic pub command seems to be correct. We can't say much about your code sample, since it doesn't include the fu

2018-03-10 18:06:00 -0500 received badge  Teacher (source)
2018-03-10 10:28:58 -0500 commented question catkin_make permission error right after ROS Kinetic installation

Did you do anything as root (or using sudo) in this workspace? What are the permissions on /home/user/catkin_ws/build?

2018-03-10 10:27:00 -0500 commented question Compiling with Cmake and PCL

I installed the ros-kinetic-pcl-ros package, which depends on libpcl-dev and other libpcl packages. I think you have a p

2018-03-10 10:09:19 -0500 received badge  Supporter (source)
2018-03-10 09:58:15 -0500 commented question Compiling with Cmake and PCL

On my system, your CMakeLists.txt and example.cpp build fine as you posted them (Ubuntu 16.04 LTS, ROS Kinetic Kame, all