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
The finial output topic of the loam is "/laser_cloud_surround", but it is not a completed result of the input dag. The points in "/laser_cloud_surround" is only the nearest part of the intput lidar points. As the code below which is from the function "bool BasicLaserMapping::createDownsizedMap()", the points in "/laser_cloud_surround" is cleared every time.
// accumulate map cloud
_laserCloudSurround->clear();
for (auto ind : _laserCloudSurroundInd)
{
*_laserCloudSurround += *_laserCloudCornerArray[ind];
*_laserCloudSurround += *_laserCloudSurfArray[ind];
}
so, how can build a full and completed map?
The text was updated successfully, but these errors were encountered:
The finial output topic of the loam is "/laser_cloud_surround", but it is not a completed result of the input dag. The points in "/laser_cloud_surround" is only the nearest part of the intput lidar points. As the code below which is from the function "bool BasicLaserMapping::createDownsizedMap()", the points in "/laser_cloud_surround" is cleared every time.
// accumulate map cloud
_laserCloudSurround->clear();
for (auto ind : _laserCloudSurroundInd)
{
*_laserCloudSurround += *_laserCloudCornerArray[ind];
*_laserCloudSurround += *_laserCloudSurfArray[ind];
}
so, how can build a full and completed map?
The text was updated successfully, but these errors were encountered: