View source: R/alphaShapeFiltration.R
alphaShapeFiltration | R Documentation |
The function alphaShapeFiltration
computes the alpha shape filtration built on top of a point cloud in 3 dimension.
alphaShapeFiltration(
X, library = "GUDHI", printProgress = FALSE)
X |
an |
library |
a string specifying which library to compute the Alpha Shape filtration. The user can use the library |
printProgress |
if |
The function alphaShapeFiltration
constructs the alpha shape filtration, using the C++ library GUDHI.
See refereneces.
The function alphaShapeFiltration
returns a list with the following elements:
cmplx |
a list representing the complex. Its i-th element represents the vertices of i-th simplex. |
values |
a vector representing the filtration values. Its i-th element represents the filtration value of i-th simplex. |
increasing |
a logical variable indicating if the filtration values are in increasing order ( |
coordinates |
a matrix representing the coordinates of vertices. Its i-th row represents the coordinate of i-th vertex. |
Jisu Kim and Vincent Rouvreau
Fischer K (2005). "Introduction to Alpha Shapes."
Edelsbrunner H, Mucke EP (1994). "Three-dimensional Alpha Shapes." ACM Trans. Graph.
Maria C (2014). "GUDHI, Simplicial Complexes and Persistent Homology Packages." https://project.inria.fr/gudhi/software/
Morozov D (2008). "Homological Illusions of Persistence and Stability."
Edelsbrunner H, Harer J (2010). "Computational topology: an introduction." American Mathematical Society.
alphaShapeDiag
, filtrationDiag
# input data generated from sphere
X <- sphereUnif(n = 20, d = 2)
# alpha shape filtration
FltAlphaShape <- alphaShapeFiltration(X = X, printProgress = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.