Struct for a single imu measurement (time, wm, am) More...
#include <sensor_data.h>
Public Member Functions | |
bool | operator< (const ImuData &other) const |
Sort function to allow for using of STL containers. More... | |
Public Attributes | |
Eigen::Matrix< double, 3, 1 > | am |
Accelerometer reading, linear acceleration (m/s^2) More... | |
double | timestamp |
Timestamp of the reading. More... | |
Eigen::Matrix< double, 3, 1 > | wm |
Gyroscope reading, angular velocity (rad/s) More... | |
Struct for a single imu measurement (time, wm, am)
Definition at line 34 of file sensor_data.h.
|
inline |
Sort function to allow for using of STL containers.
Definition at line 46 of file sensor_data.h.
Eigen::Matrix<double, 3, 1> ov_core::ImuData::am |
Accelerometer reading, linear acceleration (m/s^2)
Definition at line 43 of file sensor_data.h.
double ov_core::ImuData::timestamp |
Timestamp of the reading.
Definition at line 37 of file sensor_data.h.
Eigen::Matrix<double, 3, 1> ov_core::ImuData::wm |
Gyroscope reading, angular velocity (rad/s)
Definition at line 40 of file sensor_data.h.