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

Andrew Chambers's profile - activity

2015-05-03 15:20:32 -0500 received badge  Nice Answer (source)
2015-04-29 04:50:44 -0500 received badge  Great Question (source)
2013-03-22 10:19:25 -0500 received badge  Taxonomist
2012-09-02 17:47:00 -0500 received badge  Famous Question (source)
2012-08-15 03:32:57 -0500 received badge  Famous Question (source)
2012-08-15 03:32:57 -0500 received badge  Notable Question (source)
2012-05-30 21:09:48 -0500 received badge  Notable Question (source)
2012-03-29 13:10:05 -0500 received badge  Good Question (source)
2012-03-17 11:19:18 -0500 received badge  Popular Question (source)
2012-02-04 02:40:25 -0500 answered a question How can I use bag file data in Matlab?

You can convert the bag file to a ".bagy" file (YAML format)

$ rostopic echo chatter > chatter.bagy

and read the YAML file in Matlab using a YAML reader. I've found this to be slow for large bag files but works for variable length messages such as LaserScans.

2012-02-04 02:29:23 -0500 received badge  Editor (source)
2012-02-01 06:32:52 -0500 received badge  Teacher (source)
2012-01-30 13:59:11 -0500 answered a question FindEigen.cmake not found on Maverick only

I receive the same error message with Electric under Oneiric if I do not have a FindEigen.cmake file. See the instructions here:

http://www.ros.org/wiki/eigen

However, I notice that recently there has been an odd edit to the wiki page that doesn't make sense. Here is a link to a good version in the history:

http://www.ros.org/wiki/eigen?action=recall&rev=59

2012-01-30 13:40:02 -0500 received badge  Supporter (source)
2011-12-22 02:41:46 -0500 received badge  Nice Question (source)
2011-12-21 07:02:57 -0500 received badge  Student (source)
2011-12-21 05:15:41 -0500 received badge  Organizer (source)
2011-12-21 05:14:59 -0500 asked a question Unscented Kalman Filtering?

I want to use an unscented kalman filter (UKF) in ROS to do state estimation. I can't find any ROS packages that implement an UKF so I've been looking around at filtering libraries for C++ that I could use within ROS. Does anyone have any recommendations? I've found the following libraries but many are poorly documented or inactive. Any suggestions?

UKF support:

Bayes++

bfilt

No UKF support:

Mobile Robot Programming Toolkit (The main page lists UKFs but the code doesn't appear to implement them)

Orocos Bayesian Filtering Library

KFilter

2011-12-19 16:51:02 -0500 received badge  Popular Question (source)
2011-06-17 11:44:40 -0500 marked best answer Display an OGRE mesh and material in RVIZ

Ogre has a script to import ogre meshes into blender. Blender can then export collada.

http://www.ogre3d.org/tikiwiki/Tools%3A+Blender#Ogre_Blender_Import_Script

2011-04-19 11:32:54 -0500 asked a question Display an OGRE mesh and material in RVIZ

I'd like to display an OGRE mesh with a material in RVIZ but I'm having some difficulty. I can display the mesh by itself (without a material) by using the mesh_resource marker message. However, I can't figure out a way to get the material to display as well.

The mesh_resource marker message supports "embedded" materials which I have gotten to work with COLLADA files. Does anyone have suggestions for either converting the ogre mesh/material to a COLLADA .dae file or for getting the ogre mesh/material to work directly?

Thanks!