9 #include <pcl/surface/marching_cubes_greedy.h>
19 std::vector<pcl::Vertices>
faces;
37 mls.reconstruct (*output);
56 mls.setOutputNormals (normals);
57 mls.reconstruct (*points);
68 pcl::ConvexHull<PointT> convex_hull;
69 convex_hull.setInputCloud (input);
72 convex_hull.reconstruct (*(output->points), output->faces);
81 pcl::ConcaveHull<PointT> concave_hull;
82 concave_hull.setInputCloud (input);
83 concave_hull.setAlpha (alpha);
86 concave_hull.reconstruct (*(output->points), output->faces);
93 float max_surface_angle,
float min_angle,
float max_angle)
102 gpt.setMaximumSurfaceAgle (max_surface_angle);
118 pcl::MarchingCubesGreedy<SurfelT> marching_cubes;
120 marching_cubes.setLeafSize (leaf_size);
121 marching_cubes.setIsoLevel (iso_level);
123 marching_cubes.setInputCloud (surfels);
125 marching_cubes.reconstruct (*output);