#include #include #include #include #include #include int main(void) { typedef CGAL::Epick_d > K; typedef typename K::Point_d Point_d; CGAL::Random rd; std::vector points; for (int i = 0; i < 500; ++i) points.push_back(Point_d(rd.get_double(-1., 1), rd.get_double(-1., 1), rd.get_double(-1., 1), rd.get_double(-1., 1))); K k; std::vector results; Gudhi::subsampling::choose_n_farthest_points(k.squared_distance_d_object(), points, 100, Gudhi::subsampling::random_starting_point, std::back_inserter(results)); std::clog << "Before sparsification: " << points.size() << " points.\n"; std::clog << "After sparsification: " << results.size() << " points.\n"; return 0; }