Код: Выделить всё
pcl::RadiusOutlierRemoval
outrem;
outrem.setInputCloud(box_cloud);
outrem.setRadiusSearch(0.007);
outrem.setMinNeighborsInRadius (150);
outrem.setKeepOrganized(false);
// apply filter
outrem.filter (*box_cloud);**
Ищу решение, как сократить это время.
Подробнее здесь: https://stackoverflow.com/questions/637 ... cl-outlier