top of page

Academic Project: A Path Tracing Render System

C++

This is a Monte-Carlo rendering system that supports global illumination, interpolating parameters, texture mapping, bounding volume hierarchy accelerating, and depth of field effected rendering, etc..
I independently accomplished it under the guidance of Prof. Pradeep Sen.

The main workflow of the program is as follows:

  1. Implement a basic Whitted-style ray tracer.

  2. Improved it to support interpolating parameters, texture mapping, shaders.

  3. Accelerate the rendering of complex scenes by optimize the sphere and triangle intersection routines and add acceleration data structures.

  4. Improve it to support Monte-Carlo integration (pixel antialiasing by integrating with a box filter over the pixel footprint and depth of field by integrating over the aperture of the camera).

  5. Add path tracing to support global illumination.

Academic Project: A Path Tracing Render System: Text
Academic Project: A Path Tracing Render System: Pro Gallery

Depth-of-field effect rendering

DepthOfField.jpg
Academic Project: A Path Tracing Render System: Image

Global Illumination

PathTracing2.jpg
Academic Project: A Path Tracing Render System: Image

Final thesis

Also, I added a basic volumetic scattering effect estimater in this path tracer and wrote a final paper in SIGGRAPH tamplate which discussed principles of volumetic rendering and path tracing.

Academic Project: A Path Tracing Render System: Text
Academic Project: A Path Tracing Render System: Pro Gallery
bottom of page