Project 3a
Ray Tracer (Part 1)
Features Implemented
Scene Setup:
(x) Camera placement, film resolution, aspect ratio
(x) User specified background colors
(x) UI + OpenGL output
(x) BMP or PNG output
Primitives:
(x) Spheres
(-)
Difference/Intersection of spheres (Constructive Solid Geometry)
Lighting:
(x) Ambient lights
(x) Point light sources
(x) Shadows
(x) Multiple light sources
(x) Directional light sources
(x) Spot light sources
Sampling:
(x) Basic Sampling
(x) Jittered Supersampling
(x) Adaptive Supersampling
(-)
Motion Blur(-)
Depth of Field
Materials:
(x) Color & Specularity (Phong Lighting Model)
(x) Refraction
(x) Reflection
Code:
Team Member:
Hailin Archer
Description
This ray tracer program takes a scene text file from commandline as input. It renders the scene on computer screen using openGL. It also saves the image on disk as specified by the scene file. It allows user to control the camera's position and view angle by keyboard input.
How to compile the code
$ make clean
$ make
How to run the program
$ ./ray ./Scenes/<FILENAME>.txt
User Controls
'a' - control camera x axis by reducing x component
'd' - control camera x axis by adding x component
's' - control camera y axis by reducing x component
'w' - control camera y axis by adding x component
'e' - control camera z axis by reducing x component
'q' - control camera z axis by adding x component
'j' - control camera forward direction's x component by reducing x component
'l' - control camera forward direction's x component by adding x component
'k' - control camera forward direction's y component by reducing y component
'i' - control camera forward direction's y component by adding y component
'u' - control camera forward direction's z component by reducing z component
'o' - control camera forward direction's z component by adding z component
'b' - save current rendering result on screen to a file with time stamp (won't delete the image saved at the beginning of the rendering)
'escape' - quit program <implemented in starter code>
Images with shadow, adaptive super sampling, reflection, refraction, multiple lights, directional light.
Olympic Spheres: Adaptive up to 25 samples per pixel. Ray depth = 3. Overhead directional light
Rainbow Spheres: Adaptive up to 25 samples per pixel. Ray depth = 3. Overhead directional light
Olympic Spheres: Adaptive up to 25 samples per pixel. Ray depth = 3. 2 spot lights: one on black sphere and one on the green sphere
Rainbow Spheres: Adaptive up to 25 samples per pixel. Ray depth = 3. 3 spot lights: one on black sphere and one on the green sphere
spheres1: Adaptive up to 25 samples per pixel, 1 point light, ray depth = 5
spheres2: Adaptive up to 25 samples per pixel, 2 point lights, ray depth = 2
bear: Adaptive up to 25 samples per pixel, 2 spot lights, ray depth = 2
bear: Adaptive up to 25 samples per pixel, 2 spot lights, ray depth = 2
Sampling Method Comparison
1 Sample Per Pixel
Edges around the sphere borders and shadow borders shows steps.
Adaptive up to 25 samples per pixel with threshold of 0.1
Edges are smooth
Non Adaptive 25 samples per pixel
1 sample per pixel
Edges around the sphere borders and shadow borders shows steps.
Adaptive up to 25 samples per pixel with threshold of 0.1
Non Adaptive 25 samples per pixel
1 sample per pixel
Edges around the sphere borders and shadow borders shows steps.
Adaptive up to 25 samples per pixel with threshold of 0.1
Non Adaptive 25 samples per pixel
This benchmarking test was run with 25 jittered samples per pixel. The non adaptive method will always run 25 samples. The adaptive method examines the changes after adding each sample and exit early if the difference is smaller than the threshold. The adaptive method also guarantees at least 3 samples per pixel.
I run the program under each condition for ~10 times and then take the average of the render time of the ray tracing.
Adaptive sampling with a threshold of 0.1 has lower run time than non adaptive sampling method.
When threshold is set too tight, adaptive method does not show run time savings compared to non adaptive super sampling.
In all images tested, adaptive method with a threshold of 0.1 are indistinguishable from non adaptive super sampling.
OpenGL and UI
Spot Light
Writeup
At the beginning of the project, I spent most of my time getting up to speed with intermediate to advanced c++ techniques. I started with a object oriented design approach and made a ULM class diagram. When I start implementing it, I found this approach is not practical in that it will take too much time in unit testing, debugging and modifying the design. Instead I expanded upon the file parser, sphere intersection test and image library from HW3 codes, adding additional classes. This approach is much less overwhelming and I was able to make progress rapidly. My final code design is mainly object oriented. There are two major classes which does most of the heavy lifting: objects and scene. The objects classes defines everything in the scene and it comes with the shading function which returns hit information or color. The scene class stores objects in the scene and does the ray tree recursion.
Recursive call, reflection and refraction did not take long to implement, since my code structure supports it very well.
I found sometimes it was the trivia mistake that cost me time. At the beginning of the project, when calculating ray collision position, I took the first valid root, instead of checking for which root is the closest. I was puzzled by the result for a long time and kept checking my ray casting implementation until I realized what is happening. When I implemented the spot light, I forgot to convert degree to radian. The result did not look right of course. I focused on more complicated vector calculation for bug and it took me a while to find out it was the input value issue. And Dr. Guy helped me find out that what caused my refraction not working right is that I forgot to apply square root in the equation.
Another realization from the project is how powerful compiler can be. Under Dr. Guy's suggestion, I compiled the code using -O3 optimization, instead of standard compilation. The optimized executable's run time is half of the un-optimized compilation.
Art Contest
Alien Ball
Spotlight