AutoInt: Automatic Integration for Fast Neural Volume Rendering
David B. Lindell, Julien N. P. Martel, Gordon Wetzstein
TL;DR
AutoInt tackles the bottleneck of per-ray integration in neural volume rendering by learning a grad network that represents a signal's derivative and then reassembling it into an integral network that encodes the antiderivative. By exploiting the fundamental theorem of calculus, the approach computes definite integrals with only two network evaluations, dramatically speeding up rendering while incurring a controlled loss in image quality. The method generalizes to other domains (e.g., computed tomography) and is implemented with a piecewise volume rendering model and a fast, shared-parameter Grad/Integral network scheme. The results demonstrate more than a 10x speedup over state-of-the-art NeRF-style rendering with meaningful practical gains for real-time or interactive applications, alongside clear paths for future improvements in grad-network architectures and nonlinearities.
Abstract
Numerical integration is a foundational technique in scientific computing and is at the core of many computer vision applications. Among these applications, neural volume rendering has recently been proposed as a new paradigm for view synthesis, achieving photorealistic image quality. However, a fundamental obstacle to making these methods practical is the extreme computational and memory requirements caused by the required volume integrations along the rendered rays during training and inference. Millions of rays, each requiring hundreds of forward passes through a neural network are needed to approximate those integrations with Monte Carlo sampling. Here, we propose automatic integration, a new framework for learning efficient, closed-form solutions to integrals using coordinate-based neural networks. For training, we instantiate the computational graph corresponding to the derivative of the network. The graph is fitted to the signal to integrate. After optimization, we reassemble the graph to obtain a network that represents the antiderivative. By the fundamental theorem of calculus, this enables the calculation of any definite integral in two evaluations of the network. Applying this approach to neural rendering, we improve a tradeoff between rendering speed and image quality: improving render times by greater than 10 times with a tradeoff of slightly reduced image quality.
