Imagine handing a computer thirty photographs of a coffee mug — taken from different angles — and asking it to show you the mug from a viewpoint that no camera ever captured. Before 2020 that was a research problem spanning decades. Then NeRF arrived and made it almost trivial.
Neural Radiance Fields (Mildenhall et al., 2020) represent a scene not as a mesh or a point cloud, but as a continuous function: given any 3-D position and a viewing direction , a small neural network outputs the color and volume density at that point. The network has no explicit geometry — it simply learns to interpolate what the scene looks like from any direction.
To actually produce an image, NeRF fires a ray through each pixel and marches along it, sampling the network at many points and accumulating color using the volume rendering equation — the same physics that describes light passing through fog or smoke. The whole system is trained end-to-end by minimizing the difference between rendered and real photographs.
The result is a compact, differentiable 3-D model that can be queried for any novel view, with no manual segmentation or 3-D scanning required.
Comments
Loading comments...