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

sethu chidam's profile - activity

2013-03-18 15:33:37 -0500 received badge  Famous Question (source)
2012-09-02 22:17:36 -0500 received badge  Famous Question (source)
2012-08-30 15:10:43 -0500 received badge  Notable Question (source)
2012-08-30 15:10:43 -0500 received badge  Popular Question (source)
2012-08-17 09:35:48 -0500 received badge  Notable Question (source)
2012-08-17 09:35:48 -0500 received badge  Popular Question (source)
2012-07-18 16:20:19 -0500 commented answer What is the robot_pose_ekf current state?

same here. I am also interested

2012-07-18 16:19:50 -0500 received badge  Supporter (source)
2012-07-16 20:03:53 -0500 received badge  Teacher (source)
2012-07-16 20:03:53 -0500 received badge  Necromancer (source)
2012-07-16 19:33:30 -0500 answered a question robot_pose_ekf publish rate?

since your gps is operating at 1 Hz, i think the maximum frequency with which you can publish is 1 Hz. This is because according to basic ekf, the predictor is updated as and when the data from the imu is available and then when the gps data is available, the values are corrected and then published. I think this is reason why you can't publish at 20 Hz.

ATB! (PS: I am not sure if my answer is right, but it is as per my limited knowledge...Please correct me if my answer is wrong)

2012-07-15 22:27:59 -0500 asked a question what are the states and transistion matrices used in the robot_pose_ekf stack

Does anyone know what state vector, inputs, transistion matrix and measurement matrix is used with the robot_pose_ekf package?

The package fuses data from odometry, IMU and vo. how does this implement the ekf?I've read that you do a prediction step and then a correction step. During which step is each of the data used?

I'm trying to modify the code to incorporate a gyro, but am unable to understand the code.

Thanks!

2012-07-11 18:22:12 -0500 received badge  Editor (source)
2012-07-11 17:59:49 -0500 asked a question replacing visual odometry with a gyroscope in robot_pose_ekf package

I want to replace the visual odometry in the robot_pose_ekf package and with a KVH DSP_3000 gyroscope, for which I have written a custom code to publish the integrated angle... Any suggestions on how to go about it?