Two-Way Path Tracing

This post is about a path tracing technique that sits between unidirectional path tracing and bidirectional path tracing.

For want of a better name, let's call this two-way path tracing. It's defined as follows:

So you can think of this technique as either:

  1. Unidirectional path tracing in both directions at once
  2. Bidirectional path tracing, but we only connect sub-paths if one of the sub-paths has one vertex

So why is this interesting? Because:

In this post I'd like to cover how to multiple importance sample between forward and reverse paths, and show some test images.

Multiple Importance Sampling

To recap Eric Veach's thesis on bidirectional path tracing, if you have a path of (k+1) vertices defined by:

$$ \newcommand{\x}{\mathbf{x}} \newcommand{\Pa}[1]{P_A({#1})} \newcommand{\sigp}{\sigma^\perp} \newcommand{\Psigp}[2]{P_{\sigp}({#1} \to {#2})} \newcommand{\G}[2]{G({#1} \leftrightarrow {#2})} \newcommand{\PsigpG}[2]{\Psigp{#1}{#2}\,\G{#1}{#2}} \overline{x} = \x_0 \ldots \x_k $$

and you wish to compute the ratio of probability densities

$$p_i = p_{i,(s+t)-i}(\overline{x}_{s,t}), \qquad \text{for } i=0,\ldots,s+t$$

for each of the $(s + t + 1)$ possible sampling techniques, then these are defined by Veach as follows:

$$\begin{align*} \frac{p_1}{p_0} &= \frac{\Pa{\x_0}}{\PsigpG{\x_1}{\x_0}} \\[3ex] \frac{p_{i+1}}{p_i} &= \frac{\PsigpG{\x_{i-1}}{\x_i}}{\PsigpG{\x_{i+1}}{\x_i}} \qquad \text{for } 0 < i < k \\[3ex] \frac{p_{k+1}}{p_k} &= \frac{\PsigpG{\x_{k-1}}{\x_k}}{\Pa{\x_k}} \end{align*}$$

These ratios allow us to weight different sampling techniques to reduce variance. For example, here is an image of the cornell box, but with one of the cubes replaced with a glass sphere.

Cornell Box With Sphere

Here is a debug image (click for full size) showing all the techniques used to compute the image when using bidirectional path tracing, weighted using these probability ratios (in this image, t increases from left to right, s+t increases from top to bottom):

Debug Images For Bidirectional Path Tracing

Note that the left-hand image in each row is always zero, since we are rendering using a pinhole camera that cannot be hit by light sub-paths.

In two-way path tracing, we restrict ourselves to techniques where s < 2 or t < 2. If we adjust the bidirectional path tracing weights accordingly (using the same ratios) we get the following debug image:

Debug Images For Two-Way Path Tracing

To compute these weights, we only need to compute the following reduced set of ratios, regardless of path length:

$$\frac{p_1}{p_0}, \frac{p_k}{p_1}, \frac{p_{k+1}}{p_k}$$

The first and last are defined already, so let's try to simplify the middle term from the original definition:

$$\begin{align*} \frac{p_k}{p_1} &= \prod_{i=1}^{k-1} \frac{p_{i+1}}{p_i} \\ &= \prod_{i=1}^{k-1} \frac{\PsigpG{\x_{i-1}}{\x_i}}{\PsigpG{\x_{i+1}}{\x_i}} \\ &= \frac{\G{\x_0}{\x_1}}{\G{\x_k}{\x_{k-1}}} \prod_{i=1}^{k-1} \frac{\Psigp{\x_{i-1}}{\x_i}}{\Psigp{\x_{i+1}}{\x_i}} \end{align*}$$

As we can see, all the interior geometry terms cancelled! This product can be computed iteratively as the path is grown. This leads to an efficient algorithm for building up the ratio of $p_k/p_1$ by tracking a single scalar value as the path is constructed.

Results

Let's start with a toy scene of diffuse, mirror or glass spheres, lit by a small sphere light. This is the scene rendered using unidirectional path tracing with 128 paths per pixel:

Eye Paths Only with 128spp

It's pretty noisy due to caustic paths being poorly sampled by path tracing (since the light source is small and unlikely to be hit). Now let's look at the same scene rendered using unidirectional light tracing for 128 paths per pixel:

Light Paths Only with 128spp

Since we are using light tracing, caustic paths are well sampled, but directly viewed specular surfaces cannot be sampled at all!

What two-way path tracing allows us to do is combine these two techniques with multiple importance sampling, with much less overhead than full bidirectional path tracing. Here's the same scene rendered using 64 two-way paths per pixel (so the same total number of paths as the previous images):

Two-Way Path Tracing with 64spp

As we can see, most of the image is now cleaned up. However, you will notice that surfaces viewed indirectly through specular reflection/refraction do not benefit. This is because these surfaces are still only sampled with unidirectional path tracing. In fact, for many types of path (e.g. LSDSE paths), even moving to full bidirectional path tracing will not help since there will still only be a single technique that generates the path (hitting the light source), and you need to move to Metropolis techniques to reduce the variance.

Now let's see two-way path tracing on a more complex scene. Here's an image from my work-in-progress GPU two-way path tracer (this scene was inspired by Dietger's awesome MLT scene on ompf):

Two-Way Path Tracing Meshes 1

The floors are diffuse, and the buddha, dragon and bunny are phong, mirror and glass respectively (although glass doesn't yet use Beer's law properly). The scene is lit by a small quad light.

Here's an alternate angle to zoom in on some caustic paths:

Two-Way Path Tracing Meshes 2

I've not been very scientific, but here's the same angle with just eye paths (i.e. equivalent to unidirectional path tracing). Note the noisy caustics and fireflies around the dragon from specular paths.

Meshes Eye Paths Only

Here's the same angle with just light paths, to show what light paths give in terms of additional sampling.

Meshes Light Paths Only

Conclusions and Future Work

I've shown how to efficiently multiple importance sample between unidirectional path tracing and light tracing by building a single scalar value for the ratio $p_k/p_1$ as the path is constructed. This can help to improve convergence when light tracing is a good sampling technique for the scene, such as directly viewed caustics.

For future work, I'd like to combine this technique with Metropolis sampling, to better explore (forward and reverse) path space for more complex scenes.

I would also expect this technique to work well when sensor can be intersected, since this is one of the light tracing techniques that we can now multiple importance sample with path tracing. If we use the cornell box with sphere scene above, but make the floor a lightmap, we get the following output:

Lightmap For Cornell Box With Sphere

If we render this with two-way path tracing, we get the following debug image, showing that all 4 techniques for each path length now produce non-zero samples:

Lightmap Debug Images for Two-Way Path Tracing