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
When dlio::OdomNode::publishCloud(published_cloud, T_cloud) is called with published_cloud having a width of 0, the odometry node will crash due to a propagated division by zero error. This happens because publishCloud calls the following method with the copy_all_fields argument set to true (by default):
The division by width results in an uncaught division by zero error. This is easily fixed by calling pcl::transformPointCloud with copy_all_fields set to false.
The text was updated successfully, but these errors were encountered:
When
dlio::OdomNode::publishCloud(published_cloud, T_cloud)
is called withpublished_cloud
having awidth
of0
, the odometry node will crash due to a propagated division by zero error. This happens becausepublishCloud
calls the following method with thecopy_all_fields
argument set totrue
(by default):This method furthermore calls the following
assign
method:The division by
width
results in an uncaught division by zero error. This is easily fixed by callingpcl::transformPointCloud
withcopy_all_fields
set tofalse
.The text was updated successfully, but these errors were encountered: