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
a tiny library for segmenting a 3D point cloud and extracting an orthogonal planar surface
the interface
#include<vector>
#include"point.h"namespaceregion {
/** segment * Segments a 3D point cloud and extracts an * orthogonal planar surface. * * @param points * The given set of 3D points * * @retval * Set of 3D points corresponding to the * orthogonal planar surface*/
std::vector<Point> segment(std::vector<Point>& points);
}