Lecturer Matthieu Delaere on Gamasutra

RELATED TOPICS
arrow down

In 2020, Matthieu Delaere, Graphics Programming Lecturer started an internal research group in DAE Research, focusing on real-time computer graphics. The research group is mainly focusing on implementing state-of-the-art real-time rendering techniques in hybrid rendering pipelines.

 

We focus on using DirectX 12, as well as DXR for the ray tracing module. Next to implementing and researching new technology, we also investigate several optimization techniques to maintain interactive frame rates. At this point we are working on several use-cases that are specific to video games, such as:

  • large scale dynamic environments.
  • user created content.
  • dynamic global illumination.
  • optimization techniques suchs as load balancing, temporal reprojection and variable rate tracing.
One of the most interesting use-cases I've worked on, which was also part of my master thesis under the supervision of Dr. Ing. Jacco Bikker, is called: Caching Shading Information using Implicit Progressive Low Discrepancy Point Sets. 

 

The full article has been featured on GAMASUTRA, where you can read more about part of the performed research.

 

Below you can find a short introduction to the use-case.

Abstract of research: To create realistic computer-generated images, modern renderers often rely on Monte Carlo integration to approximate the light transportation. While offline rendering systems can execute multiple samples per pixel to better estimate the outcome of the light transport simulation, real-time systems are usually limited to one sample per pixel, per frame, to maintain interactive framerates. Instead, real-time renderers accumulate the results of multiple frames, by caching the intermediate results, to produce a similar image. To be able to cache the intermediate results, a discrete representation of the continuous surfaces in the environment is required. This discretization is often performed using fixed offsets, which leads to visually intrusive discretization artifacts. To reduce these artifacts, our approach instead relies on a runtime discretization using an implicit progressive low discrepancy point set. Compared to other point set techniques, the implicitness of our method minimizes the required memory footprint, it avoids expensive memory lookups, and it allows for an adaptive subdivision scheme which guides the density of the implicit point set. To maximize the effectiveness, our method reconstructs the final image by filtering the cached shading information directly in world space. We evaluate the method by reviewing the quality of the reconstructed image, the memory usage of the data structure used to cache the shading information and by analysing the performance.