You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EigenMatToPointCloud2 - Use rows() of Eigen::MatrixX3f &points (#68)
The usage of points.size() in EigenMatToPointCloud2 to
CreatePointCloudMsg() was incorrect, it should have been points.rows().
Using points.size() leads 3x more points being allocated in the
point cloud than necessary which bloats the message slowing things down.
These extra points are at the origin of the pointcloud.
This can manifest as an artificial hump directly under
the origin of the point cloud.
Signed-off-by: Mike Wake <[email protected]>
0 commit comments