Chapter 38
2D Alpha Shapes

Tran Kai Frank Da

Table of Contents

38.1 Definitions
38.2 Functionality
38.3 Concepts and Models
38.4 Examples
   38.4.1   Example for Basic Alpha-Shapes
   38.4.2   Example for Basic Alpha-Shapes with Many Points
   38.4.3   Example for Weighted Alpha-Shapes

alphashape

Assume we are given a set S of points in 2D or 3D and we'd like to have something like ``the shape formed by these points.'' This is quite a vague notion and there are probably many possible interpretations, the α-shape being one of them. Alpha shapes can be used for shape reconstruction from a dense unorganized set of data points. Indeed, an α-shape is demarcated by a frontier, which is a linear approximation of the original shape [BB97].

As mentioned in Edelsbrunner's and Mücke's paper [EM94], one can intuitively think of an α-shape as the following. Imagine a huge mass of ice-cream making up the space 3 and containing the points as ``hard'' chocolate pieces. Using one of these sphere-formed ice-cream spoons we carve out all parts of the ice-cream block we can reach without bumping into chocolate pieces, thereby even carving out holes in the inside (e.g. parts not reachable by simply moving the spoon from the outside). We will eventually end up with a (not necessarily convex) object bounded by caps, arcs and points. If we now straighten all ``round'' faces to triangles and line segments, we have an intuitive description of what is called the α-shape of S. Here's an example for this process in 2D (where our ice-cream spoon is simply a circle):

And what is α in the game? α is the squared radius of the carving spoon. A very small value will allow us to eat up all of the ice-cream except the chocolate points themselves. Thus we already see that the α-shape degenerates to the point-set S for α 0. On the other hand, a huge value of α will prevent us even from moving the spoon between two points since it's way too large. So we will never spoon up ice-cream lying in the inside of the convex hull of S, and hence the α-shape for α is the convex hull of S.1

38.1   Definitions

We distinguish two versions of alpha shapes. Basic alpha shapes are based on the Delaunay triangulation. Weighted alpha shapes are based on its generalization, the regular triangulation, replacing the euclidean distance by the power to weighted points.

There is a close connection between alpha shapes and the underlying triangulations. More precisely, the α-complex of S is a subcomplex of this triangulation of S, containing the α-exposed k-simplices, 0 k d. A simplex is α-exposed, if there is an open disk (resp. ball) of radius α through the vertices of the simplex that does not contain any other point of S, for the metric used in the computation of the underlying triangulation. The corresponding α-shape is defined as the underlying interior space of the α-complex (see [EM94]).

In general, an α-complex is a non-connected and non-pure polytope, it means, that one k-simplex, 0 k d-1 is not necessary adjacent to a (k+1)-simplex.

The α-shapes of S form a discrete family, even though they are defined for all real numbers α with 0 α . Thus, we can represent the entire family of α-shapes of S by the underlying triangulation of S. In this representation each k-simplex of the underlying triangulation is associated with an interval that specifies for which values of α the k-simplex belongs to the α-shape. Relying on this fact, the family of α-shapes can be computed efficiently and relatively easily. Furthermore, we can select an appropriate α-shape from a finite number of different α-shapes and corresponding α-values.

38.2   Functionality

The class CGAL::Alpha_shape_2<Dt> represents the family of α-shapes of points in a plane for all positive α. It maintains the underlying triangulation Dt which represents connectivity and order among squared radius of its faces. Each k-dimensional face of the Dt is associated with an interval that specifies for which values of α the face belongs to the α-shape. There are links between the intervals and the k-dimensional faces of the triangulation.

The class CGAL::Alpha_shape_2<Dt> provides functions to set and get the current α-value, as well as an iterator that enumerates the α-values where the α-shape changes.

It provides iterators to enumerate the vertices and edges that are in the α-shape, and functions that allow to classify vertices, edges and faces with respect to the α-shape. They can be in the interior of a face that belongs or does not belong to the α-shape. They can be singular/regular, that is be on the boundary of the α-shape, but not incident/incident to a triangle of the α-complex.

Finally, it provides a function to determine the α-value such that the α-shape satisfies the following two properties, or at least the second one if there is no such α that both are satisfied:

(i) The number of components equals a number of your choice and
(ii) all data points are either on the boundary or in the interior of the regularized version of the α-shape (no singular edges).


The current implementation is static, that is after its construction points cannot be inserted or removed.

38.3   Concepts and Models

We currently do not specify concepts for the underlying triangulation type. Models that work for a basic alpha-shape are the classes CGAL::Delaunay_triangulation_2 and CGAL::Triangulation_hierarchy_2 templated with a Delaunay triangulation. A model that works for a weighted alpha-shape is the class CGAL::Regular_triangulation_2.

The triangulation needs a geometric traits class as argument. The requirements of this class are described in the concept CGAL::AlphaShapeTraits_2 for which the Cgal kernels and CGAL::Weighted_alpha_shape_euclidean_traits_2 are models.

There are no requirements on the triangulation data structure. However it must be parameterized with vertex and face classes, which are model of the concepts AlphaShapeVertex_2 and AlphaShapeFace_2, by default the classes CGAL::Alpha_shape_vertex_base_2<Gt> and CGAL::Alpha_shape_face_base_2<Tf>.

38.4   Examples

38.4.1   Example for Basic Alpha-Shapes

The basic alpha shape needs a Delaunay triangulation as underlying triangulation Dt. The Delaunay triangulation class is parameterized with a geometric and a triangulation data structure traits.

For the geometric traits class we can use a Cgal kernel.

For the triangulation data structure traits, we have to choose the vertex and face classes needed for alpha shapes, namely CGAL::Alpha_shape_vertex_base_2<Gt, Dv> and CGAL::Alpha_shape_face_base_2<Gt,Df>. As default vertex and face type they use CGAL::Triangulation_vertex_base_2<Gt> and CGAL::Triangulation_face_base_2<Gt> respectively.

The following code snippet shows how to obtain a basic alpha shape type.

typedef CGAL::Exact_predicates_inexact_constructions_kernel K;

typedef CGAL::Alpha_shape_vertex_base_2<K> Av;

typedef CGAL::Triangulation_face_base_2<K> Tf;
typedef CGAL::Alpha_shape_face_base_2<K,Tf> Af;

typedef CGAL::Triangulation_default_data_structure_2<K,Av,Af> Tds;
typedef CGAL::Delaunay_triangulation_2<K,Tds> Dt;
typedef CGAL::Alpha_shape_2<Dt> Alpha_shape_2;

38.4.2   Example for Basic Alpha-Shapes with Many Points

When the input data set is huge, say more than 10.000 points, it pays off to use a triangulation hierarchy. It has the same API as the Delaunay triangulation and differs only in the types of the vertices and faces. Therefore, the only part that changes are the typedefs in the beginning.

typedef CGAL::Exact_predicates_inexact_constructions_kernel K;

typedef CGAL::Alpha_shape_vertex_base_2<K> Avb;
typedef CGAL::Triangulation_hierarchy_vertex_base_2<Avb> Av 

typedef CGAL::Triangulation_face_base_2<K> Tf;
typedef CGAL::Alpha_shape_face_base_2<K,Tf> Af;

typedef CGAL::Triangulation_default_data_structure_2<K,Av,Af> Tds;
typedef CGAL::Delaunay_triangulation_2<K,Tds> Dt;
typedef CGAL::Triangulation_hierarchy_2<Dt> Ht;
typedef CGAL::Alpha_shape_2<Ht> Alpha_shape_2;

38.4.3   Example for Weighted Alpha-Shapes

A weighted alpha shape , needs a regular triangulation as underlying triangulation Dt, and it needs a particular face class, namely CGAL::Regular_triangulation_face_base_2<Gt>. Note that there is no special weighted alpha shape class.

typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Weighted_alpha_shape_euclidean_traits_2<K> Gt;

typedef CGAL::Alpha_shape_vertex_base_2<Gt> Av;

typedef CGAL::Regular_triangulation_face_base_2<Gt> Rf;
typedef CGAL::Alpha_shape_face_base_2<Gt,Rf>  Af;

typedef CGAL::Triangulation_default_data_structure_2<Gt,Av,Af> Tds;
typedef CGAL::Regular_triangulation_2<Gt,Tds> Rt;
typedef CGAL::Alpha_shape_2<Rt> Alpha_shape_2;


Footnotes

 1  ice cream, ice cream!!! The wording of this introductory paragraphs is borrowed from Kaspar Fischer's `` Introduction to Alpha Shapes'' which can be found at http://people.inf.ethz.ch/fischerk/pubs/as.pdf. The picture has been taken from Walter Luh's homepage at http://www.stanford.edu/&wtilde;luh/cs448b/alphashapes.html.