summaryrefslogtreecommitdiff
path: root/src/Persistence_representations
diff options
context:
space:
mode:
authormcarrier <mcarrier@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-04-23 15:22:37 +0000
committermcarrier <mcarrier@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-04-23 15:22:37 +0000
commit380571047eac55b826fe8e0654f9ed9b64f22ffa (patch)
tree335bc373b4d4056fc5620e237788a3aca755e1af /src/Persistence_representations
parent541284f6f1bf7d4a76daac8a52850c7162a765cb (diff)
added weight_functions.h
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/kernels@3388 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 71f741e7ca2fcacc877d44e4d6b633f283526f2f
Diffstat (limited to 'src/Persistence_representations')
-rw-r--r--src/Persistence_representations/include/gudhi/Weight_functions.h81
1 files changed, 81 insertions, 0 deletions
diff --git a/src/Persistence_representations/include/gudhi/Weight_functions.h b/src/Persistence_representations/include/gudhi/Weight_functions.h
new file mode 100644
index 00000000..78de406d
--- /dev/null
+++ b/src/Persistence_representations/include/gudhi/Weight_functions.h
@@ -0,0 +1,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_