You are viewing the course site for a past offering of this course. The current offering may be found here.
Lecture 9: Ray Tracing (14)
jerryzhucs21

It feels like there are many limitations to recursive ray tracing, such as multiple mirrors facing each other so the rays continually bounce in many directions. Is there a good limitation to how many times we recurse before we stop?

ochan1

This concept reminds me of how clouds in this one video is created: https://www.youtube.com/watch?v=4QOcCGI6xOU&ab_channel=SebastianLague

So as a result, we can just use the light rays that we are more interested in rather than caring for rays that may not be interesting to us

RCD-Y

Replying to Jerry: if you're familiar with rendering engines, the level of recursion is really up to the artist. Most rendering engines set default cap levels at about 4~8 depending on the ray type.

seohyunjeon

If there are multiple light sources, do we simply have more shadow rays? Also, when calculating the final pixel color as a "weighted sum of contributions" are we talking about primary + secondary + shadow?

yang991178

The light source is characterized as a point instead of a volume in the slides. I wonder if this is true in general for raytracing since it may be hard to do the shadow ray tests on an area.

PongsatornChan

Why do we need to check for the shadow at the second point from the left? I thought that point is just a refraction point.

ZizhengTai

When a max recursion level is used, I wonder whether there will be some strange artifact due to a same max level being used for different types of surfaces. For example, if we have two pairs of surfaces (A, B) and (C, D), where A and B are facing each other, and so are C and D, so that rays bounce between surfaces in each pair forever. A and B have much greater specular coefficient than C and D. Will the fact that AB and CD are different in their specular coefficient but use the same max recursion depth cause the graphics to look weird?

ziyicui2022

If the ray first see an target object but then find some other object block this target object from the true light source, so the pixel for the target object in this specific ray will be shaded? So that could be gray scale and stuff?

You must be enrolled in the course to comment