Environment Light Importance Sampling - cmu462/Scotty3D GitHub Wiki
A pixel with coordinate . Thus, the flux through a pixel is proportional to [[media/environment_eq5.png). (We only care about the relative flux through each pixel to create a distribution.)
Summing the fluxes for all pixels, then normalizing the values so that they sum to one, yields a discrete probability distribution for picking a pixel based on flux through its corresponding solid angle on the sphere.
The question is now how to sample from this 2D discrete probability distribution. We recommend the following process which reduces the problem to drawing samples from two 1D distributions, each time using the inversion method discussed in class:
- Given  for selecting a value from each row of pixels.
- Given for any pixel, compute the conditional probability
.
Given the marginal distribution for  for environment map rows, it is easy to select a pixel as follows:
- Use the inversion method to first select a "row" of the environment map according to
.
- Given this row, use the inversion method to select a pixel in the row according to
.