Euclid
Geometry Processing and Shape Analysis in C++
HKS.h
1 #pragma once
2 
3 #include <Eigen/Core>
4 #include <Euclid/MeshUtil/MeshDefs.h>
5 
6 namespace Euclid
7 {
21 template<typename Mesh>
22 class HKS
23 {
24 public:
25  using FT = FT_t<Mesh>;
26  using Vec = Eigen::Matrix<FT, Eigen::Dynamic, 1>;
27  using Mat = Eigen::Matrix<FT, Eigen::Dynamic, Eigen::Dynamic>;
28 
29 public:
39  void build(const Mesh& mesh, unsigned k = 300);
40 
49  void build(const Mesh& mesh,
50  const Vec* eigenvalues,
51  const Mat* eigenfunctions);
52 
62  template<typename Derived>
63  void compute(Eigen::ArrayBase<Derived>& hks,
64  unsigned tscales = 100,
65  float tmin = -1.0f,
66  float tmax = -1.0f);
67 
68 private:
69  const Mesh* _mesh;
70  Mat _phi2; // @f$\phi * \phi@f$.
71  Vec _emlambda; // @f$e^{-\lambda}@f$.
72  FT _lambda_max;
73  FT _lambda_min;
74 };
75 
77 } // namespace Euclid
78 
79 #include "src/HKS.cpp"
void build(const Mesh &mesh, unsigned k=300)
Build up the necessary computational components.
Definition: HKS.cpp:11
Definition: AABB.h:6
Heat kernel signature.
Definition: HKS.h:22
void compute(Eigen::ArrayBase< Derived > &hks, unsigned tscales=100, float tmin=-1.0f, float tmax=-1.0f)
Compute hks for all vertices.
Definition: HKS.cpp:35