summaryrefslogtreecommitdiff
path: root/src/Cech_complex/include/gudhi/Cech_complex/Cech_kernel.h
blob: 890122064c4747970e30ac408c24a33822902040 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*    This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
 *    See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
 *    Author(s):       Hind Montassif
 *
 *    Copyright (C) 2021 Inria
 *
 *    Modification(s):
 *      - YYYY/MM Author: Description of the modification
 */

#ifndef CECH_KERNEL_H_
#define CECH_KERNEL_H_

#include <CGAL/Epeck_d.h> // for #include <CGAL/NewKernel_d/KernelD_converter.h>

#include <cmath>  // for std::sqrt
#include <vector>

namespace Gudhi {

// namespace cech_complex {

/** @brief Compute the radius of the minimal enclosing ball between Points given by a range of coordinates.
 * The points are assumed to have the same dimension. */
template<typename Kernel>
class Minimal_enclosing_ball_radius {
 private:
    Kernel kernel_;
 public:
    using Point = typename Kernel::Point_d;
    using Point_cloud = typename std::vector<Point>;

   /** \brief Enclosing ball radius from two points using CGAL.
   *
   * @param[in] point_1
   * @param[in] point_2
   * @return Enclosing ball radius for the two points.
   * \tparam Point must be a Kernel::Point_d from CGAL.
   *
   */
  double operator()(const Point& point_1, const Point& point_2) const {
    return std::sqrt(CGAL::to_double(kernel_.squared_distance_d_object()(point_1, point_2))) / 2.;
  }


  /** \brief Enclosing ball radius from a point cloud using CGAL.
   *
   * @param[in] point_cloud The points.
   * @return Enclosing ball radius for the points.
   * \tparam Point_cloud must be a range of Kernel::Point_d points from CGAL.
   *
   */
  double operator()(const Point_cloud& point_cloud) const {
    return std::sqrt(CGAL::to_double(kernel_.compute_squared_radius_d_object()(point_cloud.begin(), point_cloud.end())));
  }

};

/**
 * \class Cech_kernel
 * \brief Cech complex kernel container.
 * 
 * \details
 * The Cech complex kernel container stores CGAL Kernel and dispatch basic computations.
 */

// template < typename Kernel >
// class Cech_kernel<Kernel> {
//  private:
//   // Kernel for functions access.
//   Kernel kernel_;
//  public:
//   using Point_d = typename Kernel::Point_d;
//   // Numeric type of coordinates in the kernel
//   using FT = typename Kernel::FT;
//   // Sphere is a pair of point and squared radius.
//   using Sphere = typename std::pair<Point_d, FT>;
// 
//   int get_dimension(const Point_d& p0) const {
//     return kernel_.point_dimension_d_object()(p0);
//   }
// 
//   template<class PointIterator>
//   Sphere get_sphere(PointIterator begin, PointIterator end) const {
//     Point_d c = kernel_.construct_circumcenter_d_object()(begin, end);
//     FT r = kernel_.squared_distance_d_object()(c, *begin);
//     return std::make_pair(std::move(c), std::move(r));
//   }
// 
//   template<class PointIterator>
//   FT get_squared_radius(PointIterator begin, PointIterator end) const {
//     return kernel_.compute_squared_radius_d_object()(begin, end);
//   }
// 
//   FT get_squared_radius(const Sphere& sph) const {
//     return sph.second;
//   }
// };


//}  // namespace cech_complex

// namespace cechcomplex = cech_complex;

}  // namespace Gudhi

#endif  // CECH_KERNEL_H_