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

fresh_ros_user's profile - activity

2014-10-16 00:01:08 -0500 received badge  Great Question (source)
2013-01-20 23:48:52 -0500 received badge  Notable Question (source)
2013-01-20 23:48:52 -0500 received badge  Popular Question (source)
2013-01-20 23:48:52 -0500 received badge  Famous Question (source)
2012-09-24 14:55:34 -0500 received badge  Famous Question (source)
2012-09-24 14:55:34 -0500 received badge  Notable Question (source)
2012-06-23 05:17:04 -0500 received badge  Famous Question (source)
2012-05-08 21:02:07 -0500 received badge  Popular Question (source)
2012-04-02 11:54:03 -0500 received badge  Notable Question (source)
2012-02-13 04:15:40 -0500 received badge  Popular Question (source)
2012-02-05 14:12:44 -0500 received badge  Good Question (source)
2011-10-20 03:37:29 -0500 asked a question acceleration measurement error

Dear all,

I have an IMU. Even if I have made the calibration of the accelerometer, it still gives me the wrong distance value of the robot when I integrate the acceleration twice. And after the movement(when I stopped the robot), the acceleration is always different from zero. How can I fix these problems?

Thanks for your helps.

2011-10-17 07:15:30 -0500 marked best answer How to calibrate the accelerometer of an IMU sensor.

It depends on the IMU that you're using. Each style of hardware has it's own calibration protocol. Often, manufacturers provide an executable file for calibrating their IMU. Sometimes, people have written their own versions. If you provide the IMU model you're using, I might be able to help you further.

2011-10-06 20:48:45 -0500 answered a question How to calibrate the accelerometer of an IMU sensor.

I use "STEVAL-MKI062V2 iNEMO V2". I will appreciate if you help. Thanks for your interests.

2011-10-06 20:47:43 -0500 commented answer How to calibrate the accelerometer of an IMU sensor.
I use "STEVAL-MKI062V2 iNEMO V2". I will appreciate if you help. Thanks for your interests.
2011-10-06 00:16:32 -0500 asked a question How to calibrate the accelerometer of an IMU sensor.

I am new at those calibration stuff. I need to calibrate the accelerometer which is on imu. Could you tell me step-by-step how to do it? Thanks!

2011-10-06 00:07:05 -0500 received badge  Scholar (source)
2011-10-06 00:07:05 -0500 marked best answer How can I use bag file data in Matlab?

If you play back the bag, you can use:

rostopic echo -p /topic_name

to display the data in a MatLab-friendly format. You can output this to a text file with:

rostopic echo -p /topic_name > data.txt

Or, you can even convert a topic directly to CSV with:

rostopic echo -b file.bag -p /topic

NOTE: This will only work with simple message types. LaserScans, PointClouds, arrays, etc won't work very well because the entire message is rendered to text.

The other option would be to use the rosbag API, located here to load the data into a C++ program and manipulate it that way.

2011-09-29 09:32:22 -0500 received badge  Nice Question (source)
2011-09-29 00:15:59 -0500 received badge  Supporter (source)
2011-09-28 03:46:50 -0500 received badge  Student (source)
2011-09-27 03:21:02 -0500 asked a question How can I use bag file data in Matlab?

I have datas in bag file such as velocity and acceleration from the sensors. I want to read data with respect to time domain to make calculations in Matlab. How can I gain the data and use in Matlab? Thanks for your answers.