 | [TOC] Chapter 15: Light Transport III: Bidirectional Methods |  |
Bidirectional methods are an advanced class of algorithms for simulating global illumination in ray tracing. These methods aim to efficiently compute light transport, especially in complex scenes where light paths are difficult to capture with simple techniques like path tracing.
In this section, we explore bidirectional methods, including the Path-Space Measurement Equation, Stochastic Progressive Photon Mapping, Bidirectional Path Tracing, and Metropolis Light Transport.
 | The Path-Space Measurement Equation |  |
The Path-Space Measurement Equation (PSME) generalizes light transport by representing it as an integral over all possible light paths. It can be considered a more general form of the rendering equation, where we integrate over paths rather than points or rays.
The PSME is expressed as:
\[
I = \int_{\mathcal{P}} f(x_0, x_1, \dots, x_n) d\mu(x_0, x_1, \dots, x_n)
\]
where:
\( I \) is the measured light (radiance) from the scene.
\( \mathcal{P} \) is the space of all possible light paths.
\( f(x_0, x_1, \dots, x_n) \) is the measurement contribution function, which describes how light interacts along the path \( (x_0, x_1, \dots, x_n) \).
\( d\mu(x_0, x_1, \dots, x_n) \) is the differential measure on the space of paths, which considers how paths are sampled.
Intuition
Path-based methods aim to find contributions to the image by evaluating how light travels from light sources, through the scene, to the camera.
The PSME captures this process by considering all light paths and their associated contribution to the final image.
Example: Path Integral Sampling
|