4 #include <Euclid/MeshUtil/MeshDefs.h> 21 template<
typename Mesh>
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>;
39 void build(
const Mesh& mesh,
unsigned k = 300);
49 void build(
const Mesh& mesh,
50 const Vec* eigenvalues,
51 const Mat* eigenfunctions);
62 template<
typename Derived>
63 void compute(Eigen::ArrayBase<Derived>& hks,
64 unsigned tscales = 100,
79 #include "src/HKS.cpp" void build(const Mesh &mesh, unsigned k=300)
Build up the necessary computational components.
Definition: HKS.cpp:11
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