#include <fstream>
#include <iostream>
#include <CGAL/property_map.h>
#include <CGAL/IO/read_points.h>
#include <CGAL/Point_with_normal_3.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include "include/efficient_RANSAC_with_custom_shape.h"
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;
typedef My_Plane<Traits> Plane;
int main(int argc, char** argv) {
Pwn_vector points;
if (!
CGAL::IO::read_points(((argc > 1) ? argv[1] : CGAL::data_file_path(
"points_3/cube.pwn")), std::back_inserter(points),
CGAL::parameters::point_map(Point_map())
.normal_map(Normal_map())))
{
std::cerr << "Error: cannot read input file!" << std::endl;
return EXIT_FAILURE;
}
Efficient_ransac ransac;
ransac.add_shape_factory<Plane>();
ransac.detect();
std::cout << ransac.shapes().end() - ransac.shapes().begin()
<< " shapes detected." << std::endl;
return EXIT_SUCCESS;
}
A convenience header that includes all classes related to the efficient RANSAC algorithm.
Shape detection algorithm based on the RANSAC method.
Definition: Efficient_RANSAC.h:60
void set_input(Input_range &input_range, Point_map point_map=Point_map(), Normal_map normal_map=Normal_map())
Sets the input data.
Definition: Efficient_RANSAC.h:277
bool read_points(const std::string &fname, PointOutputIterator output, const NamedParameters &np=parameters::default_values())
Default traits class for the CGAL::Shape_detection::Efficient_RANSAC.
Definition: Efficient_RANSAC_traits.h:41