ros / common_msgs

Commonly used messages in ROS. Includes messages for actions (actionlib_msgs), diagnostics (diagnostic_msgs), geometric primitives (geometry_msgs), robot navigation (nav_msgs), and common sensors (sensor_msgs), such as laser range finders, cameras, point clouds.
http://wiki.ros.org/common_msgs
177 stars 191 forks source link

Proposed UpperTriangularCovariance message #138

Open tfoote opened 5 years ago

tfoote commented 5 years ago

In most of our messages right now we transport covariance matrices as 36 64bit numbers. This reduces it to only 21 as well as reducing the floating point representation to 32bits. This makes it take up only 29% as much space on the wire and in memory. The precision of the floating point values is unlikely to be important as the value is designed to capture the magnitude of the uncertainty so the 32bit representation should be fine. And the covariance matrices are symmetric so the other half of the matrix is redundant.

With some helper methods to convert to and from full matricies in common linear math libraries it should not effect workflows. And by standardizing this common checks can also be performed in a standardized way instead of the current ad-hoc method in each implementation.

This has been inspired by the URT covariance matrix implementation used in the vehicle_odometry.msg recently adopted by PX4: https://github.com/PX4/Firmware/pull/9895/files#diff-0f57b02da78e5e981838d756f46d7462R56

This is intended to be used mostly as a submessage for an evolution of https://github.com/ros/common_msgs/pull/87