3 #include <pcl/kdtree/kdtree_flann.h>
4 #include <pcl/surface/mls.h>
5 #include <pcl/surface/convex_hull.h>
6 #include <pcl/surface/concave_hull.h>
7 #include <pcl/surface/gp3.h>
8 #include <pcl/surface/marching_cubes_greedy.h>
18 std::vector<pcl::Vertices>
faces;
21 using MeshPtr = std::shared_ptr<Mesh>;
24 smoothPointCloud (
const PointCloudPtr & input,
float radius,
int polynomial_order)
30 mls.setPolynomialFit (polynomial_order > 1);
36 mls.reconstruct (*output);
42 computeSurfaceElements (
const PointCloudPtr & input,
float radius,
int polynomial_order)
48 mls.setPolynomialFit (polynomial_order > 1);
55 mls.setOutputNormals (normals);
56 mls.reconstruct (*points);
65 computeConvexHull (
const PointCloudPtr & input)
70 MeshPtr output (
new Mesh);
71 convex_hull.
reconstruct (*(output->points), output->faces);
78 computeConcaveHull (
const PointCloudPtr & input,
float alpha)
84 MeshPtr output (
new Mesh);
85 concave_hull.
reconstruct (*(output->points), output->faces);
91 greedyTriangulation (
const SurfaceElementsPtr & surfels,
float radius,
float mu,
int max_nearest_neighbors,
92 float max_surface_angle,
float min_angle,
float max_angle)
101 gpt.setMaximumSurfaceAgle (max_surface_angle);
115 marchingCubesTriangulation (
const SurfaceElementsPtr & surfels,
float leaf_size,
float iso_level)
117 pcl::MarchingCubesGreedy<SurfelT> marching_cubes;
119 marching_cubes.setLeafSize (leaf_size);
120 marching_cubes.setIsoLevel (iso_level);
122 marching_cubes.setInputCloud (surfels);
124 marching_cubes.reconstruct (*output);
std::vector< pcl::Vertices > faces
ConcaveHull (alpha shapes) using libqhull library.
void reconstruct(PointCloud &points, std::vector< pcl::Vertices > &polygons)
Compute a concave hull for all points given.
void setAlpha(double alpha)
Set the alpha value, which limits the size of the resultant hull segments (the smaller the more detai...
ConvexHull using libqhull library.
void reconstruct(PointCloud &points, std::vector< pcl::Vertices > &polygons)
Compute a convex hull for all points given.
GreedyProjectionTriangulation is an implementation of a greedy triangulation algorithm for 3D points ...
void setSearchRadius(double radius)
Set the sphere radius that is to be used for determining the k-nearest neighbors used for triangulati...
void setNormalConsistency(bool consistent)
Set the flag if the input normals are oriented consistently.
void setMaximumNearestNeighbors(int nnn)
Set the maximum number of nearest neighbors to be searched for.
void setMinimumAngle(double minimum_angle)
Set the minimum angle each triangle should have.
void setMaximumAngle(double maximum_angle)
Set the maximum angle each triangle can have.
void setMu(double mu)
Set the multiplier of the nearest neighbor distance to obtain the final search radius for each point ...
KdTreeFLANN is a generic type of 3D spatial locator using kD-tree structures.
shared_ptr< KdTreeFLANN< PointT, Dist > > Ptr
shared_ptr< KdTree< PointT > > Ptr
void reconstruct(pcl::PolygonMesh &output) override
Base method for surface reconstruction for all points given in <setInputCloud (), setIndices ()>
MovingLeastSquares represent an implementation of the MLS (Moving Least Squares) algorithm for data s...
void setSqrGaussParam(double sqr_gauss_param)
Set the parameter used for distance based weighting of neighbors (the square of the search radius wor...
void setPolynomialOrder(int order)
Set the order of the polynomial to be fit.
void setSearchMethod(const KdTreePtr &tree)
Provide a pointer to the search object.
void setSearchRadius(double radius)
Set the sphere radius that is to be used for determining the k-nearest neighbors used for fitting.
virtual void setInputCloud(const PointCloudConstPtr &cloud)
Provide a pointer to the input dataset.
void setSearchMethod(const KdTreePtr &tree)
Provide an optional pointer to a search object.
PointCloud represents the base class in PCL for storing collections of 3D points.
void copyPointCloud(const pcl::PointCloud< PointInT > &cloud_in, pcl::PointCloud< PointOutT > &cloud_out)
Copy all the fields from a given point cloud into a new point cloud.
shared_ptr< ::pcl::PolygonMesh > Ptr