-
a property map associating points to the elements of the point set
points
-
Type: a model of
ReadablePropertyMap
whose key type is the value type of the iterator ofPointRange
and whose value type isGeomTraits::Point_3
-
Default:
PointMap()
CGAL 6.0.1 - Kinetic Surface Reconstruction
|
#include <CGAL/Kinetic_surface_reconstruction_3.h>
Pipeline for piecewise planar surface reconstruction from a point cloud via inside/outside labeling of a kinetic partition using min-cut.
GeomTraits | must be a model of KineticShapePartitionTraits_3 . |
PointRange | must be a range of 3D points and corresponding 3D normal vectors whose iterator type is RandomAccessIterator . |
PointMap | a model of ReadablePropertyMap whose key type is the value type of the PointRange and value type is GeomTraits::Point_3 |
NormalMap | a model of ReadablePropertyMap whose key type is the value type of the PointRange and value type is GeomTraits::Vector_3 |
IntersectionKernel | must be a model of Kernel using exact computations. Defaults to CGAL::Exact_predicates_exact_constructions_kernel . Used for the internal kinetic shape partition. |
Public Types | |
using | Kernel = GeomTraits |
using | Intersection_kernel = IntersectionKernel |
using | FT = typename Kernel::FT |
using | Point_3 = typename Kernel::Point_3 |
using | Plane_3 = typename Kernel::Plane_3 |
using | Point_range = PointRange |
using | KSP = Kinetic_space_partition_3< Kernel, Intersection_kernel > |
using | Point_map = PointMap |
using | Normal_map = NormalMap |
Public Member Functions | |
template<typename NamedParameters = parameters::Default_named_parameters> | |
Kinetic_surface_reconstruction_3 (Point_range &points, const NamedParameters &np=CGAL::parameters::default_values()) | |
creates a Kinetic_shape_reconstruction_3 object. | |
template<typename NamedParameters = CGAL::parameters::Default_named_parameters> | |
std::size_t | detect_planar_shapes (const NamedParameters &np=parameters::default_values()) |
detects shapes in the provided point cloud and regularizes them. | |
const std::vector< Plane_3 > & | detected_planar_shapes () |
returns the support planes of the detected and regularized shapes. | |
const std::vector< std::vector< std::size_t > > & | detected_planar_shape_indices () |
returns the indices of detected and regularized shapes. | |
template<typename NamedParameters = CGAL::parameters::Default_named_parameters> | |
void | detection_and_partition (std::size_t k, const NamedParameters &np=parameters::default_values()) |
detects and regularizes shapes in the provided point cloud and creates the kinetic space partition. | |
void | estimate_detection_parameters (FT &max_distance, FT &normal_dev, std::size_t &min_inliers) |
std::size_t | estimate_max_subdivision_depth () |
template<typename NamedParameters = CGAL::parameters::Default_named_parameters> | |
void | initialize_partition (const NamedParameters &np=parameters::default_values()) |
initializes the kinetic partition. | |
void | partition (std::size_t k) |
propagates the kinetic polygons in the initialized partition. | |
const KSP & | kinetic_partition () const |
gives access to the kinetic partition. | |
template<class OutputPointIterator , class OutputPolygonIterator > | |
void | reconstruct_with_ground (FT lambda, OutputPointIterator pit, OutputPolygonIterator polyit) |
uses min-cut to solve an inside/outside labeling of the volumes of the kinetic partition and provides the reconstructed surface as a list of indexed polygons. | |
template<class OutputPointIterator , class OutputPolygonIterator > | |
void | reconstruct (FT lambda, std::map< typename KSP::Face_support, bool > external_nodes, OutputPointIterator pit, OutputPolygonIterator polyit) |
uses min-cut to solve an inside/outside labeling of the volumes of the kinetic partition and provides the reconstructed surface as a list of indexed polygons. | |
CGAL::Kinetic_surface_reconstruction_3< GeomTraits, PointRange, PointMap, NormalMap, IntersectionKernel >::Kinetic_surface_reconstruction_3 | ( | Point_range & | points, |
const NamedParameters & | np = CGAL::parameters::default_values() |
||
) |
creates a Kinetic_shape_reconstruction_3
object.
points | an instance of PointRange with 3D points and corresponding 3D normal vectors. |
np | a sequence of Named Parameters among the ones listed below |
|
std::size_t CGAL::Kinetic_surface_reconstruction_3< GeomTraits, PointRange, PointMap, NormalMap, IntersectionKernel >::detect_planar_shapes | ( | const NamedParameters & | np = parameters::default_values() | ) |
detects shapes in the provided point cloud and regularizes them.
NamedParameters | a sequence of Named Parameters |
np | an instance of NamedParameters . |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
const std::vector< std::vector< std::size_t > > & CGAL::Kinetic_surface_reconstruction_3< GeomTraits, PointRange, PointMap, NormalMap, IntersectionKernel >::detected_planar_shape_indices | ( | ) |
returns the indices of detected and regularized shapes.
points
for each detected planar shape.const std::vector< Plane_3 > & CGAL::Kinetic_surface_reconstruction_3< GeomTraits, PointRange, PointMap, NormalMap, IntersectionKernel >::detected_planar_shapes | ( | ) |
returns the support planes of the detected and regularized shapes.
Plane_3
for each detected planar shape.void CGAL::Kinetic_surface_reconstruction_3< GeomTraits, PointRange, PointMap, NormalMap, IntersectionKernel >::detection_and_partition | ( | std::size_t | k, |
const NamedParameters & | np = parameters::default_values() |
||
) |
detects and regularizes shapes in the provided point cloud and creates the kinetic space partition.
Combines calls of detect_planar_shapes()
, initialize_partition()
and partition()
.
NamedParameters | a sequence of Named Parameters |
k | maximum number of allowed intersections for each input polygon before its expansion stops. |
np | an instance of NamedParameters . |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
void CGAL::Kinetic_surface_reconstruction_3< GeomTraits, PointRange, PointMap, NormalMap, IntersectionKernel >::initialize_partition | ( | const NamedParameters & | np = parameters::default_values() | ) |
initializes the kinetic partition.
np | a sequence of Named Parameters among the ones listed below |
| |
|
const KSP & CGAL::Kinetic_surface_reconstruction_3< GeomTraits, PointRange, PointMap, NormalMap, IntersectionKernel >::kinetic_partition | ( | ) | const |
gives access to the kinetic partition.
void CGAL::Kinetic_surface_reconstruction_3< GeomTraits, PointRange, PointMap, NormalMap, IntersectionKernel >::partition | ( | std::size_t | k | ) |
propagates the kinetic polygons in the initialized partition.
k | maximum number of allowed intersections for each input polygon before its expansion stops. |
void CGAL::Kinetic_surface_reconstruction_3< GeomTraits, PointRange, PointMap, NormalMap, IntersectionKernel >::reconstruct | ( | FT | lambda, |
std::map< typename KSP::Face_support, bool > | external_nodes, | ||
OutputPointIterator | pit, | ||
OutputPolygonIterator | polyit | ||
) |
uses min-cut to solve an inside/outside labeling of the volumes of the kinetic partition and provides the reconstructed surface as a list of indexed polygons.
The external_nodes
parameter allows to indicate the preferred labels for faces on the bounding box.
OutputPointIterator | an output iterator taking Point_3 . |
OutputPolygonIterator | an output iterator taking polygon indices std::vector<std::size_t> . |
lambda | trades data faithfulness of the reconstruction for low complexity. Must be in the range [0, 1) . |
external_nodes | adds label preference for the faces on the bounding box. Bounding box sides without preset label are chosen by the min-cut. Setting external_nodes[ZMIN] = true sets the inside label as the preferred label for the ZMIN side of the bounding box. |
pit | output iterator to receive the vertices of the reconstructed surface. |
polyit | output iterator to store all polygonal faces of the reconstructed surface. |
void CGAL::Kinetic_surface_reconstruction_3< GeomTraits, PointRange, PointMap, NormalMap, IntersectionKernel >::reconstruct_with_ground | ( | FT | lambda, |
OutputPointIterator | pit, | ||
OutputPolygonIterator | polyit | ||
) |
uses min-cut to solve an inside/outside labeling of the volumes of the kinetic partition and provides the reconstructed surface as a list of indexed polygons.
Estimates a horizontal ground plane within the detected shapes. Cells in the partition below the ground plane receive a weight to be labeled as inside. The z axis is considered as vertical upwards pointing.
OutputPointIterator | an output iterator taking Point_3 . |
OutputPolygonIterator | an output iterator taking polygon indices std::vector<std::size_t> . |
lambda | trades data faithfulness of the reconstruction for low complexity. Must be in the range [0, 1) . |
pit | output iterator to receive the vertices of the reconstructed surface. |
polyit | output iterator to store all polygonal faces of the reconstructed surface. |