Difference between revisions of "Delaunay complex and alpha shapes"

From STRUCTURES Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
In this tutorial we will learn how to employ the C++ library GUDHI<ref>http://gudhi.gforge.inria.fr/</ref> (Geometric understanding in higher dimensions). For a more complete picture of GUDHI please visit the project homepage and consider reading the tutorials provided there.
+
In this tutorial we will learn how to employ the C++ library GUDHI<ref>http://gudhi.gforge.inria.fr/</ref> (Geometric understanding in higher dimensions) in order to compute the Delaunay complex and alpha shapes of given point cloud data. For a more complete picture of GUDHI we refer to the project homepage and recommend reading the tutorials provided there.
 +
 
 +
This tutorial describes the numerics leading to results as in [[What is Topological Data Analysis? - A Primer]].
  
 
__FORCETOC__
 
__FORCETOC__

Latest revision as of 19:03, 5 May 2019

In this tutorial we will learn how to employ the C++ library GUDHI[1] (Geometric understanding in higher dimensions) in order to compute the Delaunay complex and alpha shapes of given point cloud data. For a more complete picture of GUDHI we refer to the project homepage and recommend reading the tutorials provided there.

This tutorial describes the numerics leading to results as in What is Topological Data Analysis? - A Primer.


Installation

Basic constructions

References