NeRFNeural Radiance Field
A 3D scene that answers with light for any spot and direction
- NeRF (Neural Radiance Field) takes photos shot from many angles and turns a scene into a single computational rule you can ask and answer.
- What you ask is a spot in space and a viewing direction; what comes back is the color and density at that spot.
- To render one picture, the system stretches a line of sight through every pixel, asks hundreds of questions along that line, and stacks the answers front to back to get a color.
- Because direction rides along with every question, light that changes with angle — reflections on glass or metal — comes through too.
- It shares the same goal as Gaussian splatting, building a 3D scene from several photos, but it holds the result as a rule, not a pile of pieces.
Contents
1The analogy
Watch a lighthouse across a night sea and the brightness changes with your angle. Stand right in front and it's blinding; stand off to the side and it fades to a dim glow. Once you fix the lighthouse's spot and the direction you're looking from, the light reaching your eyes is fixed too.
NeRF doesn't hold a scene as a photo or a model. Picture a tiny lighthouse standing at every single point in space, and NeRF as one information booth that answers a single question: from this spot, looking in that direction, what light comes out, and how much?
To see the scene, stretch a line of sight out from your eye through every point on the screen. Ask the booth at every spot along that line, then stack the answers front to back to settle on that point's color. There's no finished picture sitting anywhere — it gets redrawn fresh every time you look.
2In detail
Taming the booth with dozens of photos
Dozens of photos of the same subject, taken from many angles, are the raw material. For each photo, the system first works out where the camera stood, then stretches a line of sight from that spot through every point on the image.
At first the booth just makes things up. Build a picture from the answers gathered along each line of sight, and it looks nothing like the original photo. The booth's habit of answering gets nudged, little by little, by exactly that gap.
Repeat this hundreds of thousands of times, and the booth ends up giving answers — for the spots and directions the photos covered — that nearly match the photos themselves. From there, asking about a spot no photo ever covered also gets a plausible answer. It's filling in the empty angles between one photo and the next.
The booth answers with color and density
A question hands over two things: a spot in space, and the direction you're viewing it from. The answer hands back two things too: the color of the light coming from that spot, and how solid that spot is.
Density works like fog. Near zero, it's empty air and the line of sight passes right through; high, it's a solid surface and the line of sight stops there. Nobody has to point out where the surface is — wherever density suddenly spikes, that's the surface.
Stacking answers along a line of sight
Coloring a single point on the screen means stretching a line of sight from that point into the scene. Dozens to hundreds of spots get placed along that line, and the booth gets asked at every one.
The answers get stacked front to back. If a dense answer already showed up near the front, the color behind it gets mostly buried; if the front is empty, the color behind comes through as-is. The color gathered this way becomes that point's final color.
Making one picture means doing this for every point on the screen. With hundreds of questions per point, the total count is enormous — which is exactly why people call NeRF slow.
The answer changes with direction
The same spot can show a different color depending on where you view it from — a reflection off a glass, a glint on metal, light bouncing off a wet floor. That's why direction rides along with every question.
Drop direction and ask about the spot alone, and a shiny surface comes out looking like flat paint. Add direction back in, and the reflection seems to follow you as you turn your head. But at angles the photos never covered, that same freedom works against you — hazy, foggy smudges can appear floating in empty space.
Where it splits from Gaussian splatting
Gaussian splatting does the same job from several photos. Where the two split is what they hold the result as. Splatting holds a visible pile of pieces scattered through space; NeRF holds a computational rule that answers a question.
So splatting only has to press its pieces onto the screen, which makes it fast, while NeRF has to ask hundreds of questions along every line of sight, which makes it slow. In exchange, NeRF is strong at rendering things with no clear surface, like fog or translucent glass, smoothly.
3More precisely
NeRF stands for Neural Radiance Field. The booth is played by a fairly small neural network, trained to return color and density given a spot and a direction, with a separate network trained for each scene. The calculation that mixes the values along a line of sight, front to back, into one point's color is called volume rendering. Because every pixel needs hundreds of these network calls, training and rendering a single scene the plain way is slow, which is why later variants cache partial answers in a grid instead of asking the network fresh every single time.
The analogy breaks down in places. A lighthouse generates its own light, but the color the booth answers with isn't newly created at that spot — it's light that came from somewhere else, showing itself as it passes through. So swapping the lighting and redrawing the scene isn't something the basic version can do. A harbor has only a handful of lighthouses, but here the spots you can ask about fill all of space, with no fixed count. And the booth is only trustworthy near the angles the training photos actually covered.
4Try it yourself
5Common misconceptions
It's easy to think NeRF produces a 3D model file, but actually it only produces a computational rule that answers questions, which is hard to drop directly into a game or a 3D program.
It's easy to think a few photos are enough, but actually dozens of photos spread evenly around the subject are needed, and missing angles come out mangled.
It's easy to think Gaussian splatting made NeRF obsolete, but actually NeRF is still strong on scenes with fuzzy boundaries, like fog or translucent objects.
7One-line summary
In shortNeRF holds a scene not as a picture but as a rule that answers what light shows up from this spot in that direction, and it stacks up those answers into a fresh drawing every time you look.
Spotted an error or have a better analogy? Suggest an edit · Last updated2026-09-02