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

mattc_vec's profile - activity

2023-02-22 07:20:18 -0500 received badge  Good Question (source)
2018-02-14 08:55:50 -0500 received badge  Nice Question (source)
2016-06-15 15:42:08 -0500 received badge  Famous Question (source)
2016-06-12 01:49:54 -0500 received badge  Famous Question (source)
2016-05-20 14:28:26 -0500 received badge  Notable Question (source)
2016-04-27 09:38:53 -0500 received badge  Famous Question (source)
2016-02-25 09:44:11 -0500 received badge  Notable Question (source)
2016-02-25 09:44:11 -0500 received badge  Popular Question (source)
2016-02-11 20:40:29 -0500 received badge  Popular Question (source)
2015-12-26 23:46:24 -0500 received badge  Famous Question (source)
2015-10-08 03:39:26 -0500 received badge  Notable Question (source)
2015-08-09 10:23:51 -0500 received badge  Popular Question (source)
2015-08-09 10:23:51 -0500 received badge  Notable Question (source)
2015-08-04 10:02:36 -0500 received badge  Popular Question (source)
2015-08-03 17:35:55 -0500 asked a question Importing a costmap layer from a pgm.

I've got a costmap that uses a static, obstacle, inflation, and another custom layer that I wrote. Is there an easy way to load an additional layer drawn on a PGM grayscale image? If not, I could probably manage to analyze the image with python or C++ and add values to a new costmap layer from there. Thanks!

2015-07-10 15:08:32 -0500 asked a question Get robot pose in costmap layer updateBounds.

I'm trying to get the pose of my robot in a custom costmap_2d layer, modeled after the tutorial layer here: http://wiki.ros.org/costmap_2d/Tutori... The robot_x, robot_y, and robot_yaw parameters in the updateBounds function don't seem to change from zero throughout the planning process. Is there any other way to get the pose of the robot in that function? Or some way to see why the pose is zero? I can't seem to find where that function is called. The changes I make to the costmap are applied, though. Thanks!

2015-07-10 15:02:18 -0500 received badge  Scholar (source)
2015-07-09 14:10:52 -0500 received badge  Enthusiast
2015-07-08 10:36:00 -0500 commented answer Implementing costmap_2d layer with pre-Hydro costmap.

Is there any way to add the new layer to the existing plugins array? If I specify these layers in the yaml as well, they use the default cost_scaling_factor and inflation radius, which I don't want.

2015-07-08 10:34:46 -0500 commented answer Implementing costmap_2d layer with pre-Hydro costmap.

Yeah, I completed that tutorial. I've managed create the new layer by specifying a plugins array in a .yaml file I load in the roslaunch file. This plugins array overwrites the existing one, and erases the static, inflation, and obstacle layers.

2015-07-06 16:17:21 -0500 asked a question Implementing costmap_2d layer with pre-Hydro costmap.

The project I'm working on uses a costmap that was created before the new costmap_2d implementation. I'm working in Indigo now, but the costmap hasn't been upgraded at all since the ROS version switch. I'd like to implement a new layer, so I'm just trying to get the tutorial Grid Layer set up. I worked through the 'Creating a New Layer' tutorial, but I'm not really sure what else I'll have to add in order to implement this new layer. I know the new code compiled during the catkin_make, but I'm not sure where to add the new layer. Will I need something in the C++ code that creates the original costmap object? Any yaml or xml changes that need to be made? Thanks!

2015-06-12 09:39:19 -0500 received badge  Supporter (source)
2015-06-12 09:39:15 -0500 answered a question Launching gazebo server

I encountered 'Error [Server.cc:285] Could not open file' when I tried launching gazebo with roslaunch gazebo_ros. I specified world_name:=<worldname.world> (from within the directory where the .world was located). When I added the full path to the file, the error went away.

2015-06-05 13:07:18 -0500 received badge  Student (source)
2015-06-05 09:16:58 -0500 asked a question Kill a Respawning Node (with pkill?)

I have some nodes set to respawn, but I want to kill them cleanly in a python script. Could I use pkill to do this? The nodes are specified by name, so would I need their Pid to have pkill kill them? I can find their Pid through rosnode info, but how would I do this in a script? Thanks!