|
| PosePred_ (double c) |
| Construct a pose with a specified confidence.
|
|
| PosePred_ (Vector3< F > const &translation, Matrix3< F > const &rotation, double hostTimestamp=std::numeric_limits< double >::infinity(), std::int64_t edgeTimestamp=(std::numeric_limits< std::int64_t >::min)(), double c=0.) |
| Construct a pose with a translation, rotation, timestamps and confidence.
|
|
Transform_< F > const & | transform () const |
|
Vector3< F > const & | linearVelocity () const |
| Get the linear velocity (in m/s) of the pose.
|
|
Vector3< F > const & | angularVelocity () const |
| Get the angular velocity (x,y,z) in rad/s.
|
|
void | setLinearVelocity (Vector3< F > const &v) |
| Set the linear velocity (in m/s)
|
|
void | setLinearVelocity (F const *v) |
| Set the angular velocity (x,y,z) in rad/s.
|
|
void | setAngularVelocity (Vector3< F > const &v) |
| Set an estimation of instantaneous angular velocity of the pose. More...
|
|
void | setAngularVelocity (F const *v) |
| Set an estimation of instantaneous angular velocity of the pose. More...
|
|
Vector3< F > const & | linearAcceleration () const |
| Get the linear acceleration (in m/s/s) of the pose.
|
|
Vector3< F > const & | angularAcceleration () const |
| Get the angular acceleration (x,y,z) in rad/s/s.
|
|
void | setLinearAcceleration (Vector3< F > const &v) |
| Set the linear acceleration (in m/s)
|
|
void | setLinearAcceleration (F const *v) |
| Set the angular acceleration (x,y,z) in rad/s/s.
|
|
void | setAngularAcceleration (Vector3< F > const &v) |
| Set an estimation of instantaneous angular acceleration of the pose. More...
|
|
void | setAngularAcceleration (F const *v) |
| Set an estimation of instantaneous angular acceleration of the pose. More...
|
|
double | confidence () const |
| Get the confidence of the pose. Value in [0,1], 0 means lost.
|
|
void | setConfidence (double c) |
| Set the confidence of the pose. Value in [0,1], 0 means lost.
|
|
Vector4< F > const & | quaternion () const |
| Get the quaternion of the rotation.
|
|
void | setQuaternion (Vector4< F > const &v) |
| Set the quaternion of the rotation.
|
|
void | setQuaternion (F const *v) |
| Set the quaternion of the rotation using pointer of 4D array.
|
|
void | setRotation (Matrix3< F > const &v) |
|
void | setRotation (F const *v) |
| Set the quaternion of the rotation using pointer of 4D array.
|
|
std::int64_t | edgeTimestampUs () const |
| Get the edge timestamp of the pose (in microseconds).
|
|
void | setEdgeTimestampUs (std::int64_t t) |
| Set the edge timestamp of the pose (in microseconds).
|
|
double | hostTimestamp () const |
| Get the host timestamp of the pose (in s).
|
|
void | setHostTimestamp (double t) |
| Set the host timestamp of the pose (in s).
|
|
Transform_ & | operator*= (Transform_ const &q) |
| Composition operator for transformations.
|
|
Vector3< F > const & | translation () const |
| Get the translation part of the transformation. More...
|
|
void | setTranslation (Vector3< F > const &v) |
| Set the translation part of the transformation.
|
|
void | setTranslation (F const *v) |
| Set the translation part of the transformation using pointer to 3D array.
|
|
Matrix3< F > const & | rotation () const |
| Get the rotation matrix part of the transformation. More...
|
|
F | x () const |
| X coordinate of the translation.
|
|
F | y () const |
| Y coordinate of the translation.
|
|
F | z () const |
| Z coordinate of the translation.
|
|
Transform_< F > | inverse () const |
| Compute the inverse transformation. More...
|
|