Merge branch 'master' of github.com:introlab/rtabmap into devel

This commit is contained in:
matlabbe
2016-06-14 11:56:22 -04:00

View File

@@ -116,14 +116,17 @@ void segmentObstaclesFromGround(
} }
//Cluster remaining stuff (obstacles) //Cluster remaining stuff (obstacles)
std::vector<pcl::IndicesPtr> clusteredObstaclesSurfaces = util3d::extractClusters( if(otherStuffIndices->size())
cloud, {
otherStuffIndices, std::vector<pcl::IndicesPtr> clusteredObstaclesSurfaces = util3d::extractClusters(
clusterRadius, cloud,
minClusterSize); otherStuffIndices,
clusterRadius,
minClusterSize);
// merge indices // merge indices
obstacles = util3d::concatenate(clusteredObstaclesSurfaces); obstacles = util3d::concatenate(clusteredObstaclesSurfaces);
}
} }
} }
} }