summaryrefslogtreecommitdiff
path: root/src/Persistence_representations/include/gudhi/Weight_functions.h
blob: 78de406d1603ac9590aeffa9822d08ca4507c86c (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
/*    This file is part of the Gudhi Library. The Gudhi library
 *    (Geometric Understanding in Higher Dimensions) is a generic C++
 *    library for computational topology.
 *
 *    Author(s):       Mathieu Carriere
 *
 *    Copyright (C) 2018  INRIA (France)
 *
 *    This program is free software: you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
 *    the Free Software Foundation, either version 3 of the License, or
 *    (at your option) any later version.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 *
 *    You should have received a copy of the GNU General Public License
 *    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef WEIGHT_FUNCTIONS_H_
#define WEIGHT_FUNCTIONS_H_

// gudhi include
#include <gudhi/read_persistence_from_file.h>
#include <gudhi/common_persistence_representations.h>

// standard include
#include <cmath>
#include <iostream>
#include <vector>
#include <limits>
#include <fstream>
#include <sstream>
#include <algorithm>
#include <string>
#include <utility>
#include <functional>

namespace Gudhi {
namespace Persistence_representations {

/** \fn  static double pss_weight(std::pair<double,double> p)
 * \brief Persistence Scale Space kernel weight function.
 * \ingroup Persistence_representations
 *
 * @param[in] p point in 2D.
 */
static double pss_weight(std::pair<double,double> p)     {if(p.second > p.first)  return 1; else return -1;}

/** \fn static double linear_weight(std::pair<double,double> p)
 * \brief Linear weight function.
 * \ingroup Persistence_representations
 *
 * @param[in] p point in 2D.
 */
static double linear_weight(std::pair<double,double> p)  {return std::abs(p.second - p.first);}

/** \fn static double const_weight(std::pair<double,double> p)
 * \brief Constant weight function.
 * \ingroup Persistence_representations
 *
 * @param[in] p point in 2D.
 */
static double const_weight(std::pair<double,double> p)   {return 1;}

/** \fn static std::function<double (std::pair<double,double>) > arctan_weight(double C, double alpha)
 * \brief Returns the arctan weight function with parameters C and alpha.
 * \ingroup Persistence_representations
 *
 * @param[in] C     positive constant.
 * @param[in] alpha positive power.
 */
static std::function<double (std::pair<double,double>) > arctan_weight(double C, double alpha)  {return [=](std::pair<double,double> p){return C * atan(std::pow(std::abs(p.second - p.first), alpha));};}

}  // namespace Persistence_representations
}  // namespace Gudhi

#endif  // WEIGHT_FUNCTIONS_H_