Different distance sampling and transmittance estimation methods: ray marching, delta tracking and ratio tracking
Qi Ma
Updated Files
- src/heterogeneous.cpp
Implementation
We implemented three different distance sampling and transmittance estimation methods for heterogeneous participating media: ray marching, delta tracking, and ratio tracking.
Ray Marching
Ray marching samples the medium at regular intervals along the ray path. We followed the PBR-book ray marching formula \[ p_t(t) = \sigma_t(t) e^{-\int_0^t \sigma_t(t') dt'} \]
The transmittance is calculated by integrating the attenuation coefficient along the ray path. This method has a parameter stepSize to control the sampling interval.
Delta Tracking
Different from Ray Marching, delta tracking and ratio tracking are unbiased methods. Delta tracking is using reject sampling. This methoud adds fictitious particles that do not impact transport, and make the combined volume (real + fictitious) homogeneous. It probabilistically reject/accept collisions based on local concentrations of real or fictitious volumes.
Ratio Tracking
Ratio tracking offers an alternative approach to improve the accuracy of transmittance estimation. Instead of immediately terminating transmission, it accumulates the transmittance along the entire path. This is achieved by multiplying the transmittance at each step, calculated as the ratio between the actual extinction coefficient and the majorant extinction coefficient.
Validation
We compared the three distance sampling and transmittance estimation methods in a simple Cornell box scene with cloud from OpenVDB models.
- \(\sigma_a\): 1.0 1.0 1.0
- \(\sigma_s\): 4.0 4.0 4.0
- spp: 256



- \(\sigma_a\): 2.0 2.0 2.0
- \(\sigma_s\): 3.0 3.0 3.0
- spp: 128



From the images above, we can see that the results of ratio tracking are slightly brighter than those of delta tracking, especially in the bunny cloud scene. This may be due to the fact that delta tracking terminates the transmission at a random point determined by Russian roulette, potentially causing the transmittance to be underestimated. The results of ray marching are similar to those of ratio tracking but appear unnatural at the edges of the cloud. This is because the ray marching method is a brute-force approach, and the step size is not small enough to capture the details of the cloud accurately.
We also measured the time cost of the three methods in the bunny cloud scene. The results are shown below:
Method | Time Cost (minutes) |
---|---|
Delta Tracking | 16.3 |
Ray Marching | 11.4 |
Ratio Tracking | 15.9 |
The time costs of the three methods are comparable, but the results of ratio tracking are slightly better than those of delta tracking. Although the ray marching method is faster than the other two methods in this case, this may not always hold true, as its time cost depends on the step size. If the step size is reduced, the time cost of ray marching will increase.
We also compared different step sizes for the ray marching method. As shown in the images below, as the step size decreases, the results become more natural.



