GithubHelp home page GithubHelp logo

path-stencil's Introduction

Assignment 1: Path Tracing (Path)

Released: 2/2/24

Milestone Due: 2/9/24 @ 11:59pm EST

Final Assignment Due: 2/16/24 @ 11:59pm EST

In this assignment, you will implement a physically-based renderer based on the path tracing algorithm. Path tracing is a simple, elegant Monte Carlo sampling approach to solving the rendering equation. Like ray tracing, it produces images by firing rays from the eye/camera into the scene. Unlike basic ray tracing, it generates recursive bounce rays in a physically accurate manner, making it an unbiased estimator for the rendering equation. Path tracers support a wide variety of interesting visual effects (soft shadows, color bleeding, caustics, etc.), though they may take a long time to converge to a noise-free image.

If you have written a ray tracer in a previous graphics course (e.g. CS 1230 here at Brown), you are welcome to extend your ray tracing code for this assignment. If you do not already have a ray tracer, or if you do but you’d rather start from a clean slate, we provide a bare-bones ray tracer below (see "Resources").

Relevant Reading

Requirements

This assignment is out of 100 points.

Your path tracer must implement the following features:

  • Four basic types of BRDFs:
    • Diffuse (7 points - milestone deadline)
    • Glossy reflections (7 points)
    • Mirror reflection (7 points)
    • Refraction (with Fresnel reflection) (10 points)
  • Soft shadows (7 points)
    • From sampling area light sources
  • Indirect illumination (7 points - milestone deadline)
    • Your path tracer must produce color bleeding and caustics
  • Russian roulette path termination (5 points)
  • Event splitting (15 points)
    • At each recursive path tracing step, separately accumulate the contributions of direct lighting and indirect lighting.
    • Be careful not to double-count light sources in both contribution terms!
  • Tone mapping (5 points - milestone deadline)
    • Your path tracer takes a scene file as input and outputs an image to disk. To produce output images, you’ll need to convert the high-dynamic range radiance values produced by the path tracer into low-dynamic range values that can be written to standard 24-bit RGB image formats such as JPEG or PNG. You’ll need a tone-mapping operator for this; a simple one such as the (extended) Reinhard operator is fine.
  • Submission: Output images (6 points)
    • You must submit images demonstrating the functionality of your path tracer in the provided submission templates (submission-milestone.md and submission-final.md). Instructions can be found there. These must be completed by the milestone and final deadlines, respectively.
  • Submission: Implementation details (4 points)
    • Complete the Design Choices, Extra Features, Collaboration, and Known Bugs sections at the bottom of submission-final.md)

Successfully completing all of the requirements results in a total of 80/100 points (a grade of B). To score 100/100 (or more!), you’ll need to implement some extra features (see "Extra Features" below)

Milestone:

By the milestone deadline, you should have implemented (1) diffuse reflection, (2) indirect illumination, and (3) tone mapping, as well as filled out submission-milestone.md. Make sure to push your changes and submit your Github repo to Gradescope.

Having these features implemented by the milestone deadline is worth 5 points. That is to say: if you implement them correctly by the final submission deadline, but not by the milestone deadline, you'll incur a -5 point penalty to your project grade. Why do we do this? We want to encourage you to start early and develop good habits that will carry over to the rest of the assignments in the course (the latter of which do not have formal milestones).

Please note that we will not have your milestone submissions graded before the final submission deadline--that's only a week's time, and we're only human. If you want feedback on how well your code is working as of the milestone deadline, we expect you to take initiative and come talk to us at hours.

Material Specifications

Required Materials: Your path tracer must support these 4 types of materials:

  • Ideal diffuse
  • Glossy specular
  • Ideal specular (mirror)
  • Dielectric refraction (refraction + Fresnel reflection)

You do not need to support any materials beyond this. For example, it’s not necessary to handle materials that combine a diffuse and a glossy specular component (or other combinations of material types). You may do so if you wish, but it’s not required—in your submission, we only expect to see images depicting the 4 types of materials above.

Getting and interpreting materials from input files

Our scene files load ‘mesh’ primitives from .obj files, and .obj files sometimes also come with an associated .mtl file. The .mtl file provides materials for the geometry in the .obj file at the per-face level (i.e. per triangle). The latest revision of the starter code includes some commented-out example code showing how to read both types of materials (per-object and per-face) from a mesh that’s been hit by a ray. See the PathTracer::traceRay function in pathtracer.cpp for these examples.

The materials parsed from the .mtl file are a single material struct/class that contains coefficients for diffuse, specular, reflective, etc. See utils/tiny_obj_loader.h in the stencil code for detailed parsing logic. A detailed description of mtl specification can be found at http://paulbourke.net/dataformats/mtl/. The parameters that are most relevant to this assignment are Kd, Ks, Ke, Ns, Ni and Illum (you would mostly only need 2 and 5 for illum).

To convert such a material to one of the 4 required types of materials for this assignment, you can use whatever logic you like. For example, if you encounter a material with nonzero diffuse coefficient but zero for all other coefficients, a sensible thing to do might be to treat that material as an ideal diffuse reflector.

You do not need to worry about making your code handle all possible types of input materials. The only scene files your code needs to run on are the ones you design for it. So, it’s perfectly fine to ignore the case when, say, a material has both nonzero diffuse coefficient and nonzero specular coefficient, since you are not required to implement materials that combine those two effects.

Light sources

The assignment spec states that you need to support area light sources resulting in soft shadows. The recommended way to do this is to treat objects with emissive materials as area light sources. The best place in the code to look through the scene objects for emissive ones is probably in Scene::parseTree, which constructs a vector of scene objects before building a BVH acceleration structure out of them. You’ll also need to implement a method for sampling a point on an area light source (i.e. sampling a point on the surface of an emissive triangle mesh).

Extra Features

Each of the following features that you implement will earn you extra points. The features are ordered roughly by difficulty of implementation.

  • Attenuate refracted paths (5 points)
    • Attenuate the contribution of a refracted light path based on the distance it travels through the refracting object. For example, a path going through a gray glass crystal ball ends up less bright if it goes a long way through the glass rather than a short distance.
  • Stratified sampling (5 points)
    • For your path tracer to converge to a relatively noise-free image, it’ll need to trace many rays per pixel. Rather than scattering them randomly over the sensor square, try stratified sampling, in which you divide the sensor area into a grid, and then pick one or two or twenty samples uniformly in each grid square.
    • Include at least one image comparing this approach to uniform random ray sampling, and describe this comparison in your README.
  • Depth of field (5 points)
    • Instead of generating rays from a single eye location, scatter the starting location over a lens (e.g. a disk). This produces an effect that mimics camera defocus blur.
    • The scene will be in focus only at the same depth away from the eye/lens as the virtual film plane--rays diverge as they move away from this plane, leading to defocus blur. You can control the location of the focus plane by changing the location of the virtual film plane.
    • Obviously, this is an approximation, and not a physically-based model of how cameras work. If you’re interested in how you might do that, check out this paper on putting a simulated camera lens system into your path tracer.
  • More advanced BRDFs (5 points each)
  • Low discrepancy sampling (10 points)
    • The rendering problem that a path tracer tries to solve is an integration problem, and there’s nothing that says we have use random samples to estimate integrals. Rather, any set of samples that are ‘well-spaced out’ but not perfectly uniform (to avoid aliasing) ought to work. This is the idea behind low-discrepancy sampling (also known as Quasi-Monte Carlo): use an algorithm that deterministically generates random sample points that have the right properties.
    • You can find a more detailed introduction to this concept here.
    • Include at least one image comparing this approach to uniform random ray sampling (or stratified sampling), and describe this comparison in your README.
  • BRDF importance sampling (5 points per BRDF)
    • When tracing a recursive ray from a surface intersection, you can choose it randomly from the hemisphere; alternatively, you can choose it in a way that's approximately proportional to the BRDF, and use importance sampling.
    • Include at least one image comparing this approach to uniform hemisphere sampling, and describe this comparison in your README.
  • Multiple importance sampling (5 points)
    • Next event estimation separates the contributions of direct vs. indirect illumination. Instead, you can use multiple importance sampling (MIS), which provides a general procedure for combining samples drawn using different sampling strategies.
    • Check out the chapter on MIS from Erich Veach’s thesis to learn more about how it works.
    • Include at least one image comparing MIS to next event estimation, and describe this comparison in your README.
  • Image-based lighting (10 points)
    • Instead of using area lights to illuminate your scene, use a high-dynamic range hemisphere or cube-map as a light source. This allows you mimic real-world lighting environments.
    • Paul Debevec provides several light probe images which you can use for image-based lighting.
  • Fixed Function Denoising (10 points)
    • You can use post-processing filters to denoise images rendered with few samples per pixel. For example, take a look at the wavelet transform methods as described here and here, which denoise the image by transforming the input image into the wavelet domain.
    • Include at least one set of comparison images for before and after denoising, and describe your methods in your README.
  • Learned Denoising (20 points)
    • Rather than using fixed filter kernels, you can also use a neural network such as a CNN to learn kernel weights for denoising rendered images. Some example architectures are described in this paper and this paper.
    • You will be responsible for finding training data and training your model, so we consider this a fairly large undertaking.
    • Include at least one set of comparison images for before and after denoising, and describe your architecture and methods in your README.
  • CUDA C++ Implementation (20 points)
    • Write your code in CUDA C++ so that it can take advantage of GPU parallelism
  • Something else!
    • This list is not meant to be exhaustive--if you’ve got another advanced feature in mind, go for it! (though you may want to ask a TA or the instructor first if you’re concerned about whether the idea is feasible)
    • You might consider looking through a recent paper written by the authors of the Arnold renderer for some advanced feature ideas.

Any extra features you implement must be described in your README. To get extra credit, you must also submit comparison images and brief explanations for each feature that you implement in the submission Markdown file.

You can also get extra credit for sharing a scene you’ve created with the class (2 points). Post the scene file(s) and a rendering of the scene to Slack. If your path tracer is built on top of your own ray tracer and uses a different scene file format than the one used by the bare-bones ray tracer we provide, or if you’ve modified our scene file format in any way, you should also post instructions for how to read your scene file format.

Resources

Feel free to use this stencil code to get started.

This includes all the code needed to load scene files, set up a scene, trace rays through pixels, compute intersections of rays with the scene, and output images. If you already have your own ray tracer, you may still want to use (a) the scene file parser and (b) the bounding volume hierarchy (for fast ray-scene intersections) provided by this code.

Using the CS Grid for rendering (optional)

Rendering high quality images can take a long time. Rather than make your poor laptop sweat for hours, you may want to look into using the department's compute cluster, a.k.a. The Grid. Anyone with a CS login has the ability to submit jobs to these machines. Some of them are pretty old, and none of them are terribly fast, but they are a nice resource for massively-parallel compute jobs (e.g. rendering!) Remember that because your path tracer is unbiased (or at least, it should be!), you can render the same scene multiple times on different Grid nodes and then average the resulting images together to get a lower-variance final image.

Submission Instructions

For the milestone deadline, submit your GitHub repository to the "Path (Milestone)" assignment. Your submission should contain a filled out submission-milestone.md, showing that you've implemented the required milestone features (diffuse reflection, indirect illumination, and tone mapping).

For the final deadline, submit your repository to the “Path (Final)” assignment. This submission should contain a filled out submission-final.md

Implementation & Debugging Tips

To set command line arguments in QT, go to the Projects tab on the left, under build and run, under your currently configured kit, click run, and you should have a screen where you can enter command line arguments to run the executable with.

  • There are a lot of different probability calculations that go into computing the contribution of a ray to the final image. Make sure you really understand all of this math before you start trying to implement anything. You don’t want to get into the situation where your code is producing images that don’t quite look right, and all you can do is resort to aimlessly tweaking parts of the code (e.g. fiddling with constants, flipping minus signs) to try and make them look right.
  • Don’t try to implement all the required features at once. Implement them one by one, thoroughly debugging as you go.
  • It's useful to be able to look at your rendered output images before you've implemented a tone mapping function. To do this, you can write your pathtracer's raw per-pixel radiance values to a high-dynamic range image format. The simplest such format is PFM (short for Portable Float Map). We've provided a helper function called outputPFM in CS123Common.h that writes raw radiance values to a PFM file. MacOS has a built-in PFM viewer. If you are on windows, there are third-party viewers such as PfmPad.
  • Path tracers can take a long time to produce an image. The first thing you should do is make sure to compile your code in "Release" mode (or with all compiler optimizations enabled, if you’re not using Qt Creator). To speed up your code-test-iterate cycle, you’ll want to render low-resolution images (or, small windows cut out of a larger image that focus on some region of interest). In addition, you can also parallelize your code. Using OpenMP’s parallel for loop is a good option, and there is a commented out line in the starter code (pathtracer.cpp, line 21) that illustrates how to do so. Strongly recommended!
  • When you allocate memory, make sure to zero it out. Bugs can creep into your code from uninitialized values.
  • If you’re noticing ‘speckling’ artifacts, i.e. individual isolated pixels that look incorrect: try using an image editor to identify the coordinates of a problematic pixel (many image editors will display this information somewhere as you mouse over the image). Then, set a breakpoint in your code that only fires on that pixel, and use a debugger to step through and see what is going wrong.
  • "Does this caustic look right?" The human visual system is easy to fool, and it can be hard to tell if your pathtracers are producing correct and/or unbiased results. You can compare your renders with "ground truth" images stored in example-scenes/ground_truth as you write and debug your pathtracer. These images were either rendered with the production renderer Mitsuba, or found here.

About the Code

Eigen

After cloning the repository, run

git submodule update --init

to pull in the Eigen dependency

Qt

The stencil code is written in Qt and will therefore require Qt Creator to be installed. Qt Creator 9 and 6.2 Community Edition have been tested. If you do not have QT setup, follow section 3 of this guide from cs1230.

How to Build

The included project files should be all you need to build, so just open the project in Qt Creator ("Open Project" > select CMakeLists.txt) and build the project.

How to Run

The compiled application takes one command line argument to the relative path to the .ini config file. Each config file specifies the input/output paths and feature settings for the path tracer (e.g. sample count). Your program is required to respond to changes to these parameters. See submission-milestone.md for guidance. Feel free to create your own .ini files with additional parameters as necessary, but do not modify the provided .ini files!

To set this command line argument in Qt, go to the Projects tab on the left, under Run, under your currently configured kit, click run, and you should have a screen where you can enter command line arguments to run the executable with.

The program will save a .png image to disk at the path specified in the config file.

For students using Apple chip (M1/M2), please find file /BVH/BBox_appleChip.cpp and copy it to overwrite /BVH/BBox.cpp. While is will slow down your code a bit, you can still produce results within reasonable time.

Code Structure

The main files you should need to edit/look at are pathtracer.cpp and the files in the scene/ directory. However, feel free to modify any other code you like.

pathtracer.cpp is the class that receives a scene and an array of pixels to fill in the color for, so this is where you should start implementing the actual path tracing. However, it's a good idea to think about your design beforehand so that you don't end up putting all of your code into one file!

In the scene directory, there is the mesh class, which represents the objects that you are casting rays to collide with. Each mesh has a list of vertices, normals, colors and UVs, all of which are the same length, one for each vertex. They also contain a list of Vector3is which correspond to the faces of the mesh. Each Vector3i describes a triangle in the mesh and contains 3 indices into the vertex, normal, etc arrays. There is also a list of integers, one for each face, that contains the indices of the material for that face. These indices index into the final array, the material array. This array is loaded from the .mat file that likely comes with the .obj file that you are loading, and will contain whatever material properties were specified for the mesh.

Example Scene Files

The stencil code uses a modified version of the CS123 scene files, which are xml files. The full spec for the scene files can be found in scenefile.pdf. Note that the stencil code only supports mesh primitives and not cubes, cylinders, etc. However, meshes can be used to represent any of these shapes, and if you want, you can add support for primitives.

Some example scenes can be found in the example-scenes directory.

path-stencil's People

Contributors

bblinn2017 avatar brynnchernosky avatar cocokaleel avatar dcharatan avatar dinhanhtruong avatar dritchie avatar liyb2002 avatar maggie1059 avatar p-bibs avatar purvigoel avatar rkjones4 avatar tschicke-brown avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.