Surface reconstruction algorithms are used to convert point cloud data—the most common format in which real-world scans are captured—into other downstream-usable formats, such as meshes or other shape representations. For an orientable surface , they work by taking a set of oriented points from the surface, where are normal vectors, and attempt to produce a suitable shape representation of . In this work, we study a class of uncertainty quantification algorithms which produce a probability distribution over possible surfaces, and develop an improved numerical pipeline for performing the required calculations for doing so.
Uncertainty Quantification for Surface Reconstruction
To begin, we first briefly review Poisson surface reconstruction—the most widely-used surface reconstruction algorithm, before describing how to quantify its uncertainty. Poisson surface reconstruction reconstructs the surface as an implicit function , producing an which is negative on the inside of the surface, on the surface, and positive on the outside of the surface. The algorithm does so by creating a dense, global mesh encapsulating the input points, and then using finite elements to solve the Poisson equation, namely the partial differential equation , on this mesh. This is most often done using finite elements.
Stochastic Poisson Surface Reconstruction
When observations are sparse, surface reconstruction becomes an under-determined problem. Instead of reasoning about one surface, we may want to consider the distribution of surface the input might have been sampled from. To achieve this, Sellán and Jacobson introduce a statistical extension called stochastic Poisson surface reconstruction, which adds these capabilities. Instead of a deterministic , they place a Gaussian process prior and apply Bayesian learning to compute the conditional distribution of , which is also a Gaussian process. This works because the Poisson solve is linear, and Gaussian processes are closed under linear transformations. Figure 1 gives an illustration of these computations.
By its Bayesian nature, stochastic Poisson surface reconstruction quantifies uncertainty. However, due to the same nature, the computational pipeline of Sellán and Jacobson inherits and introduces a few limitations:
- It requires one to work with a global scene is therefore not output-sensitive: one cannot obtain uncertainty for a part of the surface without first obtaining it for the whole surface.
- It introduces approximations which make covariance calculations inaccurate for realistic length scales.
- It couples the discretization structure and the prior’s kernel length scale, which can cause runtime to scale exponentially with reconstruction resolution.
Our key contribution is to reduce or remove these limitations, by reformulating the problem using geometric Gaussian processes.
Avoiding the Poisson Solve using Geometric Gaussian Processes
To alleviate the preceding limitations, our approach will be merge the two parts of the computational pipeline used by Sellán and Jacobson: (1) the Gaussian process interpolation on and (2) the Poisson solve used to produce the implicit surface from . To see how, note first that Gaussian processes are closed under linear transformations, so we can directly express the posterior using pathwise conditioning as
These expressions involve matrices generated from the cross-covariance and the scalar field covariance : it is not immediately clear how to derive these from the vector field covariance . Our paper also contains expressions for the posterior mean and covariance, which are similar.
To compute these, we will assume periodic boundary conditions, along with a periodic kernel, and apply the theory of geometric Gaussian processes. Note that these are assumed on the bounding box surrounding the surface, and not the surface itself. Our main result is as follows. Let be a product kernel where each component has a Mercer expansion . Note that this expansion is known for periodic Matérn kernels, where takes is an explicit analytic function. Under these assumptions, we show that the covariance between the interpolated vector field and Poisson equation’s solution is
and that the covariance of the Poisson equation’s solution is
This allows us to evaluate the posterior without any finite element solves, by truncating these sums! We also include sampling formulas in the paper, and describe strategies for selecting the truncation level and amortizing its cost.
Demonstrations and Examples
We now illustrate some example surface reconstruction applications common in computer graphics, which can be handled using our approach. This is shown in Figure 2, 3, 4, and 5 below.
Conclusion
We developed an approach for avoiding recursive linear solves in stochastic Poisson surface reconstruction, which was achieved by applying periodic boundary conditions and working with geometric Gaussian processes. The proposed method was shown to support the same set of statistical queries as prior work, and additionally provide new, random-sampling-based queries. These are able to take into account smoothness properties captured by the kernel’s correlations, which are lost as a result of diagonal kernel matrix approximations made in prior work. Our work also constitutes a first step to incorporating sample-efficient data acquisition techniques from the Gaussian process and Bayesian optimization literatures into surface reconstruction and computer graphics.