Table of Contents
Fetching ...

Robust Hole-Detection in Triangular Meshes Irrespective of the Presence of Singular Vertices

Mauhing Yip, Annette Stahl, Christian Schellewald

TL;DR

This work addresses automatic hole detection in edge-manifold triangular meshes containing singular vertices by introducing a robust, projection-free boundary extraction framework based on the half-edge set $\mathbf{H}$. It guarantees existence and uniqueness of boundaries for every half-edge and decomposes complex boundaries into simple, non-redundant boundaries, while classifying them into coastlines and holes (tide holes and lake holes). Two theorems with accompanying proofs establish the method’s correctness, and the implementation in Python using Open3D demonstrates strong performance on synthetic and real-world datasets, including underwater and sonar-derived meshes. The approach is validated across the Stanford bunny, underwater photogrammetry models, and a multibeam sonar scene, showing resilience to singular vertices and enabling actionable information gaps for data acquisition and robotic inspection. The authors also provide open-source code to facilitate adoption in CAD and underwater robotics workflows.

Abstract

In this work, we present a boundary and hole detection approach that traverses all the boundaries of an edge-manifold triangular mesh, irrespectively of the presence of singular vertices, and subsequently determines and labels all holes of the mesh. The proposed automated hole-detection method is valuable to the computer-aided design (CAD) community as all half-edges within the mesh are utilized and for each half-edge the algorithm guarantees both the existence and the uniqueness of the boundary associated to it. As existing hole-detection approaches assume that singular vertices are absent or may require mesh modification, these methods are ill-equipped to detect boundaries/holes in real-world meshes that contain singular vertices. We demonstrate the method in an underwater autonomous robotic application, exploiting surface reconstruction methods based on point cloud data. In such a scenario the determined holes can be interpreted as information gaps, enabling timely corrective action during the data acquisition. However, the scope of our method is not confined to these two sectors alone; it is versatile enough to be applied on any edge-manifold triangle mesh. An evaluation of the method is performed on both synthetic and real-world data (including a triangle mesh from a point cloud obtained by a multibeam sonar). The source code of our reference implementation is available: https://github.com/Mauhing/hole-detection-on-triangle-mesh.

Robust Hole-Detection in Triangular Meshes Irrespective of the Presence of Singular Vertices

TL;DR

This work addresses automatic hole detection in edge-manifold triangular meshes containing singular vertices by introducing a robust, projection-free boundary extraction framework based on the half-edge set . It guarantees existence and uniqueness of boundaries for every half-edge and decomposes complex boundaries into simple, non-redundant boundaries, while classifying them into coastlines and holes (tide holes and lake holes). Two theorems with accompanying proofs establish the method’s correctness, and the implementation in Python using Open3D demonstrates strong performance on synthetic and real-world datasets, including underwater and sonar-derived meshes. The approach is validated across the Stanford bunny, underwater photogrammetry models, and a multibeam sonar scene, showing resilience to singular vertices and enabling actionable information gaps for data acquisition and robotic inspection. The authors also provide open-source code to facilitate adoption in CAD and underwater robotics workflows.

Abstract

In this work, we present a boundary and hole detection approach that traverses all the boundaries of an edge-manifold triangular mesh, irrespectively of the presence of singular vertices, and subsequently determines and labels all holes of the mesh. The proposed automated hole-detection method is valuable to the computer-aided design (CAD) community as all half-edges within the mesh are utilized and for each half-edge the algorithm guarantees both the existence and the uniqueness of the boundary associated to it. As existing hole-detection approaches assume that singular vertices are absent or may require mesh modification, these methods are ill-equipped to detect boundaries/holes in real-world meshes that contain singular vertices. We demonstrate the method in an underwater autonomous robotic application, exploiting surface reconstruction methods based on point cloud data. In such a scenario the determined holes can be interpreted as information gaps, enabling timely corrective action during the data acquisition. However, the scope of our method is not confined to these two sectors alone; it is versatile enough to be applied on any edge-manifold triangle mesh. An evaluation of the method is performed on both synthetic and real-world data (including a triangle mesh from a point cloud obtained by a multibeam sonar). The source code of our reference implementation is available: https://github.com/Mauhing/hole-detection-on-triangle-mesh.
Paper Structure (18 sections, 4 theorems, 7 equations, 17 figures, 2 tables, 3 algorithms)

This paper contains 18 sections, 4 theorems, 7 equations, 17 figures, 2 tables, 3 algorithms.

Key Result

Lemma 1

If $\mathbf{T}$ is an edge-manifold triangle mesh, and $\mathbf{H}$ is the set that contains all the half-edges of $\mathbf{T}$, for any half-edge $h_{i,j}\in \mathbf{H}$, there exists one and only one half-edge $h_{j,k}$, in $\mathbf{Q}(h_{i,j})$ such that it contains vertex $v_j$ but not vertex $v

Figures (17)

  • Figure 1: The green line represents the currently considered half-edge, while the blue lines indicate the potential next half-edges. The red dot in (b) indicates a singular vertex. In (a), determining the next half-edge is straightforward as only one blue line connects to the end of the current half-edge. However, in (b) a more complex scenario is presented with three potential next half-edges. The challenge lies in selecting the appropriate next half-edge to ensure that each half-edge in the entire mesh is used exactly once to construct boundaries, while also making sure that all half-edges contribute to boundary formation.
  • Figure 2: Illustrating some of the mentioned mesh definitions. (a) Edge-connected mesh. (b) Three edge-connected meshes are connected by vertices to form a vertex-connected mesh.
  • Figure 3: Illustrating the provided definitions of 1-ring triangles within (a) and a transition edge in (b).
  • Figure 4: A distinctive approach to determining the next connected half-edge to $h_{0,1}$ (green) is illustrated, irrespective of whether $v_1$ is singular or not. The purple curved arrow indicates the connected subsequent half-edge is determined.
  • Figure 5: The looping process (line 8 - 17) in \ref{['alg:next-halfedge']}.
  • ...and 12 more figures

Theorems & Definitions (29)

  • Definition 1: Vertex
  • Definition 2: Edge
  • Definition 3: Triangle
  • Definition 4: Half-edge
  • Definition 5: Full-edge
  • Definition 6: Mesh
  • Definition 7: Edge-connected Mesh
  • Definition 8: Vertex-connected Mesh
  • Definition 9: Edge-manifold Mesh
  • Definition 10: Manifold Mesh
  • ...and 19 more