CGAL 5.1 - Shape Detection
Shape_detection/efficient_RANSAC_and_plane_regularization.cpp
#if defined (_MSC_VER) && !defined (_WIN64)
#pragma warning(disable:4244) // boost::number_distance::distance()
// converts 64 to 32 bits integers
#endif
#include <fstream>
#include <iostream>
#include <CGAL/property_map.h>
#include <CGAL/IO/read_xyz_points.h>
#include <CGAL/Point_with_normal_3.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Shape_detection/Efficient_RANSAC.h>
#include <CGAL/Regularization/regularize_planes.h>
// Type declarations.
typedef std::pair<Kernel::Point_3, Kernel::Vector_3> Point_with_normal;
typedef std::vector<Point_with_normal> Pwn_vector;
<Kernel, Pwn_vector, Point_map, Normal_map> Traits;
int main(int argc, char** argv) {
Pwn_vector points;
std::ifstream stream(argc > 1 ? argv[1] : "data/cube.pwn");
if (!stream ||
stream,
std::back_inserter(points),
CGAL::parameters::point_map(Point_map()).
normal_map(Normal_map()))) {
std::cerr << "Error: cannot read file cube.pwn!" << std::endl;
return EXIT_FAILURE;
}
// Call RANSAC shape detection with planes.
Efficient_ransac efficient_ransac;
efficient_ransac.set_input(points);
efficient_ransac.add_shape_factory<Plane>();
efficient_ransac.detect();
Efficient_ransac::Plane_range planes = efficient_ransac.planes();
// Regularize detected planes.
Point_map(),
planes,
true, // regularize parallelism
true, // regularize orthogonality
false, // do not regularize coplanarity
true, // regularize Z-symmetry (default)
10); // 10 degrees of tolerance for parallelism / orthogonality
return EXIT_SUCCESS;
}
CGAL::Shape_detection::Plane_map
Definition: property_map.h:84
CGAL::Shape_detection::Plane
Plane implements Shape_base. The plane is represented by the normal vector and the distance to the or...
Definition: Plane.h:33
CGAL::Exact_predicates_inexact_constructions_kernel
read_xyz_points
bool read_xyz_points(std::istream &stream, OutputIterator output, const NamedParameters &np)
CGAL::Shape_detection::Point_to_shape_index_map
Definition: property_map.h:31
CGAL::Shape_detection::Efficient_RANSAC
Shape detection algorithm based on the RANSAC method.
Definition: Efficient_RANSAC.h:60
CGAL::First_of_pair_property_map
Kernel
CGAL::regularize_planes
void regularize_planes(const PointRange &points, PointMap point_map, PlaneRange &planes, PlaneMap plane_map, IndexMap index_map, const Kernel &, bool regularize_parallelism, bool regularize_orthogonality, bool regularize_coplanarity, bool regularize_axis_symmetry, double tolerance_angle=25.0, double tolerance_coplanarity=0.01, typename Kernel::Vector_3 symmetry_direction=typename Kernel::Vector_3(0.0, 0.0, 1.0))
Given a set of detected planes with their corresponding inlier sets, this function enables to regular...
Definition: regularize_planes.h:595
CGAL::Shape_detection::Efficient_RANSAC_traits
Default traits class for the CGAL::Shape_detection::Efficient_RANSAC.
Definition: Efficient_RANSAC_traits.h:41
CGAL::Second_of_pair_property_map