NeRFuser
Scalable scene representation via NeRF registration and blending.
With another member of RIPL at TTIC, I developed NeRFuser
, a software framework that uses an arbitrary number of pre-generated neural radiance fields (NeRFs) to represent a large-scale scene. NeRFuser
registers individual NeRFs in a shared global coordinate system, and synthesizes better quality novel views by blending the visual information from the source NeRFs at the ray sample level. An initial version of this work was presented at the Neural Fields Workshop @ ICLR 2023.
- Given pre-generated NeRFs,
NeRFuser
registers them by- rendering novel views at camera poses sampled in each NeRF’s local coordinate system with heuristics;
- re-purposing an off-the-shelf structure-from-motion algorithm to recover the poses of the synthesized images in a global coordinate system; and
- using the recovered poses to solve for the transform from the global coordinate system to each NeRF.
- Given the query camera pose and the transforms among the source NeRFs as solved in the registration phase,
NeRFuser
then blends the visual information from the source NeRFs at the ray sample level. Specifically,- we only use NeRFs that are sufficiently close (when compared to the closest one) to the query camera for blending, which not only reduces the time cost, but also improves image quality;
- when it comes to the ray corresponding to a pixel to be rendered, we merge the sets of ray samples proposed by each kept source NeRF, essentially creating the union set of ray samples with their color and termination probabilities properly set; and
- we blend the ray samples following inverse distance weighting, where the distance between the ray sample and each NeRF’s center is used.