#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/property_map.h>
#include <CGAL/remove_outliers.h>
#include <CGAL/IO/read_xyz_points.h>
#include <vector>
#include <fstream>
int main(void)
{
std::vector<Point> points;
std::ifstream stream("data/oni.xyz");
if (!stream ||
{
std::cerr << "Error: cannot read file data/oni.xyz" << std::endl;
return EXIT_FAILURE;
}
const double removed_percentage = 5.0;
const int nb_neighbors = 24;
nb_neighbors, removed_percentage),
points.end());
std::vector<Point>(points).swap(points);
return EXIT_SUCCESS;
}