Skip to content

YichaoW/RealTime-RayTracing-Caustics

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RealTime-RayTracing-Caustics

Yichao Wang, Xiao Wei

seas_logo

Overview

Caustics

Caustic is the term used to describe the patterns of light and color that occur when light rays are reflected or refracted from a surface.

The above two images are the caustics from glass and water in real life.

Cool Results

Live Demo (16 million photons)

Starbucks Coffee Cup Chalice
cc41592d8df132130e5f6564a5a1be7 ae8c5449db8285ce50686c2e4931c60
Utah Teapot Cat
d6d233105f903ffbc724fe5b60fef2a

Water

Project Implementation

This project implements real-time ray tracing techniques for rendering caustics effects using DirectX RayTracing(DXR). The main idea to visualize caustics is to use photon tracing. Caustics are commonly seen in water, metallic, and transparent surfaces but they are either ignored or roughly handled such as decal textures. GPU ray tracing brings photon mapping which is currently most efficient algorithm to calculate caustics pattern. We used several research papers to guide us to produce the final result. See References.

Requirement

  • Windows 10
  • Visual Studio 2019
  • DirectX RayTracing(DXR)
  • GeForce GTX 1060

Presentation Slides

Pitch Slides

Milestone1 Slides

Milestone2 Slides

Milestone3 Slides

Final Presentation Slides

DirectX RayTracing

DirectX RayTracing (DXR) is a feature introduced in Microsoft's DirectX 12 API that implements ray tracing. We are using base code from Microsft's DXR samples.

Photon Mapping

Photon mapping realistically simulates the interaction of light with different types of objects. We emit photons from the light and record its intersection and throughput to build the photon map. Then we use the normal ray tracing to accumulate photons near the hit position.

Photon Caustics

Caustics photon map is slightly different from traditional photon map. For caustics, we only store photons that hit a diffuse object and its previous hit is a specular object. After that, we compute the caustics through ray tracing.

Sphere

Refraction Sphere Refraction Sphere with caustics

Cube

The first image is a glass cube with pure refraction. The second image is the same glass cube with caustics map visualized. Next is the caustic radiance estimation result via naïve k nearest neighbor search, which includes 3 nearest photons. Next two images are the results using photon spatial hashing and nearby estimation. We can see the results are pretty close to real-life cube caustics shown in the last reference image.

Refraction Cube Refraction Cube with Photon Visualization
bd0cca6a6975f71aef8189d38c08fa9 a568c9ba31f0b17cabcd576b269d816
Naive k nearest neightbor Spatial Hashing 1
2d56e82b3e96c65f19e68ae3789ef96 7d63c119751c9e0076689d84ae50004
Spatial Hashing 2 Real Life Reference image
dca30830dec344c2a1c6565d6ddfeb1 e9e2808e5e26dc4ef2435b5d28d24d5

Naive Search

They are several algorithms to accumulate caustic photons near the hit position. The first one is the naive search which accumulates all the photons within a predefined search radius. This algorithm is easy to implement but it has several drawbacks. First of all, it produces an unnatural visual effect. As we can see from the below image, there are artificial circles surrounding the caustics. This may be caused by the predefined search radius. Another disadvantage is that this algorithm is not very efficient. Since it traverses all the photons to find nearby ones at each hit position, the time complexity is O(N), where N is the number of photons we emit.

Naive Caustics

Stochastic Spatial Hashing

Another algorithm we implemented is the stochastic hash where we store photons in a hash table. In this algorithm, we separate 3D space into small cells. For each photon's position, we compute the cell it belongs to and hash it into the hash table. If there is more than one photon's at the same index, we just accumulate the photon count. Then we search for neighbors to compute final caustics at each hit position. This method increases variance since it ignores a lot of photons. This also introduces some noise to the final image. However, the results looks more natural, as we can see from the below image. This algorithm is also a lot more efficient than naive search. The time complexity is O(1) since we only need to find its neighbor.

Stochastic Spatial Hashing Caustics

Performance Analysis

All the performance test is run by GeForce GTX 1060. It will be much faster if use advance graphics cards such as GeForce RTX 3060 and above.

Note that the fps for sphere without caustics is about 300fps.

Naive Search

The number of photons will affect both fps and the visual effect in naive search. We can see both performance is unsatisfactory from the below images.

2^8 photons(15 fps) 2^12 photons(11 fps) 2^16 photons(8 fps)

naive

Spatial Hashing

Number of Photons

Like naive search, the number of photons will also affect both fps and the visual effect in sptial hashing though it is a lot faster with more photons. As number of photon increase, the caustics area increases.

2^18 photons (37 fps) 2^22 photons (25 fps) 2^24 photons (20 fps)

Note that the cell size is 0.02^3 for above images.

spatial_photon

Cell Size

As spatial grid's cell size increases, the caustics area increases and the fps also increases. Since grid size is fixed, increase of cell size means decrease the number of cells in the grid. Thus the fps increases.

0.02^3 cell size(20 fps) 0.05^3 cell size (42 fps) 0.1^3 cell size (84 fps)

Note that the photon number is 2^24 for above images.

spatial_cell

Future Work

  • GPU KD Tree nearest neighbor search, spatial hashing is a good estimation but not detailed enough
  • Support more model import, including mtl, gltf. Make the DXR pipeline more efficient with large models
  • Raytracing and photon tracing with more bounces and indirect light to improve overall quality

References

Real-Time Raytraced Caustics

Microsft's DXR samples

Photon Mapping

Photon Mapping GPU

Progressive Photon Mapping on GPUs

Microsoft DXR Mannual

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published