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

luckyeights's profile - activity

2013-08-27 00:01:23 -0500 received badge  Famous Question (source)
2013-08-27 00:01:23 -0500 received badge  Popular Question (source)
2013-08-27 00:01:23 -0500 received badge  Notable Question (source)
2012-08-15 18:51:13 -0500 received badge  Notable Question (source)
2012-08-15 18:51:13 -0500 received badge  Famous Question (source)
2012-07-19 02:40:31 -0500 received badge  Popular Question (source)
2012-03-24 12:44:00 -0500 received badge  Nice Question (source)
2012-03-23 09:31:38 -0500 asked a question What tools were used to create PR2's rviz model?

I've been trying to create a better visualization for our robot using Rviz. I'm working with HERB, which has structure very similar to the pr2, and my goal is to create a new robot model with textures similar to the visualization for pr2.

It looks like the relevant files for the pr2 are in pr2_description, and the main models are collada files. I've been attempting to create similar models using Blender, MeshLab, and ProEngineer, but nothing shows up with color in Rviz.

Many of my problems are very similar to this post, though I'm using Rviz instead of Gazebo. Correct shading isn't necessary - but we need the ability to color an object without having to break it into separate models for Rviz to color independently.

The pr2 model loads just fine. What software was used to create this model? Maybe I can use the same procedure to avoid the picky characteristics of Blender, Collada, and Rviz.

Thank you!

2012-01-18 18:32:10 -0500 marked best answer Does ROS optimize around unheard messages?

The main overhead is you filling/creating the message + marshalling. If you want to avoid your work: You can check for the getNumSubscribers property in a publisher to prevent doing any work (This is done, for example, in the kinect driver).

Messages should not be stored temporarily unless the topic is latched.

2012-01-04 05:50:38 -0500 received badge  Supporter (source)
2012-01-03 19:37:53 -0500 received badge  Student (source)
2012-01-03 08:02:23 -0500 asked a question Does ROS optimize around unheard messages?

I'm running ROS on a system with low resources.

If I have a publisher streaming messages to a ROS topic (here, a topic which carries sonar readings), but the topic has no listeners, does ROS handle that data? Or is it moved to temporary storage? What extra load, if any, does the publishing of message introduce to the system?