HKUST-Aerial-Robotics / VINS-Mono

A Robust and Versatile Monocular Visual-Inertial State Estimator
GNU General Public License v3.0
4.94k stars 2.09k forks source link

What does the each item in output file "vins_result.csv" mean in ros? #10

Closed txy362922388 closed 7 years ago

txy362922388 commented 7 years ago

I know the first three items are position (x,y,z),how about next items ?

PeiliangLi commented 7 years ago

Please find it in https://github.com/HKUST-Aerial-Robotics/VINS-Mono/blob/master/vins_estimator/src/utility/visualization.cpp pubOdometry()

qintonguav commented 7 years ago

You can find the result in the source code which Peiliang tells you.

time stamp + position(x,y, z) + quaternion(qw, qx, qy, qz) + velocity(x,y,z)

all of them are in world frame (where the z-axis is gravity direction)

alexis-dupuis commented 6 years ago

I just want to update this answer for anyone still interested in it. Vins-Mono now outputs 2 result files whose names are pretty explicites:

They are published in the folder defined by the parameter "output_path" in your yaml file, for instance: [path to VINS folder]/config/euroc/euroc_config.yaml ; line 6.

Hope this may clear things for anyone.