CVMar 25, 2022

Continuous Dynamic-NeRF: Spline-NeRF

arXiv:2203.13800v11 citationsh-index: 1Has Code
Originality Incremental advance
AI Analysis

This addresses the challenge of continuous reconstruction for moving scenes in computer vision, offering a generalizable method that blends classical animation techniques with neural networks, though it appears incremental as it builds on prior NeRF work.

The paper tackles the problem of reconstructing continuous functions over time, such as dynamic scenes, by proposing a new architecture based on Bezier splines that ensures C0 and C1 continuity, allowing for guaranteed interpolation without relying on regularization as sequence length grows.

The problem of reconstructing continuous functions over time is important for problems such as reconstructing moving scenes, and interpolating between time steps. Previous approaches that use deep-learning rely on regularization to ensure that reconstructions are approximately continuous, which works well on short sequences. As sequence length grows, though, it becomes more difficult to regularize, and it becomes less feasible to learn only through regularization. We propose a new architecture for function reconstruction based on classical Bezier splines, which ensures $C^0$ and $C^1$-continuity, where $C^0$ continuity is that $\forall c:\lim\limits_{x\to c} f(x) = f(c)$, or more intuitively that there are no breaks at any point in the function. In order to demonstrate our architecture, we reconstruct dynamic scenes using Neural Radiance Fields, but hope it is clear that our approach is general and can be applied to a variety of problems. We recover a Bezier spline $B(β, t\in[0,1])$, parametrized by the control points $β$. Using Bezier splines ensures reconstructions have $C^0$ and $C^1$ continuity, allowing for guaranteed interpolation over time. We reconstruct $β$ with a multi-layer perceptron (MLP), blending machine learning with classical animation techniques. All code is available at https://github.com/JulianKnodt/nerf_atlas, and datasets are from prior work.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes