Imagine scattering a handful of sand on a table and then asking: what shape are those grains forming? If you draw the tightest shrink-wrap around them, you get the convex hull â a rubber-band outline that ignores every bay and hollow. But the real silhouette could be a crescent, a ring, a star, or something with fingers and holes.
Alpha shapes, introduced by Herbert Edelsbrunner, David Kirkpatrick, and Raimund Seidel in 1983, answer that question with one tunable parameter, (alpha). Imagine rolling a disk of radius across the outside and inside of the point cloud. Any part of space that the disk can reach without touching a point gets carved away. What remains is the alpha shape.
- Set (infinite disk): nothing gets carved â you recover the full convex hull.
- Increase (shrink the disk): the boundary starts to dip into concavities, revealing bays, peninsulas, and eventually holes.
- Increase far enough: some points become isolated â the shape fragments into individual vertices.
The magic is that a single dial sweeps the full spectrum from "lump" to "skeleton" without any ambiguity. Alpha shapes sit at the heart of computational geometry and are the workhorse behind 3-D printing, molecular surface reconstruction, and geographic boundary estimation.
Comments
Loading comments...