Introduction
For CSC570 Final Project, I created a relatively simple image by Photon Mapping.
Implementation
The image is built from two photon maps: one for global illumination and the other one for caustics. The global map contains more than 20000 photons. The photon maps are implemented as standard C/C++ arrays. Photons are allowed to bounce maximum of 3 times. The caustics map contains 5000 photons. The color of each pixel is determined from three sources: The color of object hit by a ray and colors sampled from the global and caustics maps. The color sampling from the maps are done by sampling photons residing within the radius of 100 from the location of the interset. The Shading is done by Phong shading.
The size of the image is 640 X 480, and it takes about 1 min and 17 seconds to render the image. The image is outputed as a TGA file.
You can download the source for the program here (only tested on Linux).