cs 184 computer graphics
play

CS-184: Computer Graphics Lecture #6: Raytracing Prof. James - PowerPoint PPT Presentation

CS-184: Computer Graphics Lecture #6: Raytracing Prof. James OBrien University of California, Berkeley V2013-S-06-1.0 1 Today Raytracing Shadows and direct lighting Reflection and refraction Antialiasing, motion blur, soft


  1. CS-184: Computer Graphics Lecture #6: Raytracing Prof. James O’Brien University of California, Berkeley V2013-S-06-1.0 1 Today • Raytracing • Shadows and direct lighting • Reflection and refraction • Antialiasing, motion blur, soft shadows, and depth of field • Intersection Tests • Ray-primitive 2 2 Saturday, February 9, 13

  2. Raytracing Assignment 3 3 Light in an Environment Lady writing a Letter with her Maid National Gallery of Ireland, Dublin Johannes Vermeer, 1670 4 4 Saturday, February 9, 13

  3. Global Illumination Effects PCKTWTCH Kevin Odhner POV-Ray 5 5 Global Illumination Effects A Philco 6Z4 Vacuum Tube Steve Anger POV-Ray 6 6 Saturday, February 9, 13

  4. Global Illumination Effects Caustic Sphere Henrik Jensen (refraction caustic) 7 7 Global Illumination Effects Caustic Ring Henrik Jensen (reflection caustic) 8 8 Saturday, February 9, 13

  5. Global Illumination Effects Sphere Flake Henrik Jensen 9 9 Early Raytracing Turner Whitted 10 10 Saturday, February 9, 13

  6. Raytracing • Scan conversion • 3D → 2D → Image • Based on transforming geometry • Raytracing • 3D → Image • Geometric reasoning about light rays 11 11 Raytracing Eye, view plane section, and scene 12 12 Saturday, February 9, 13

  7. Raytracing Launch ray from eye through pixel, see what it hits 13 13 Raytracing Compute color and fill-in the pixel 14 14 Saturday, February 9, 13

  8. Raytracing • Basic tasks • Build a ray • Figure out what a ray hits • Compute shading 15 15 Building Eye Rays • Rectilinear image plane build from four points UL P UR v E LL u LR P = u ( v LL +( 1 − v ) UL )+ ( 1 − u )( v LR +( 1 − v ) UR ) 16 16 Saturday, February 9, 13

  9. Building Eye Rays • Nonlinear projections • Non-planar projection surface • Variable eye location 17 17 Examples Multiple-Center-of-Projection Images P . Rademacher and G. Bishop 18 18 SIGGRAPH 1998 Saturday, February 9, 13

  10. Examples Spherical and Cylindrical Projections Ben Kreunen From Big Ben's Panorama Tutorials 19 19 Building Eye Rays • Ray equation R ( t ) = E + t ( P − E ) t ∈ [ 1 ... + ∞ ] t = 0 • Through eye at P • At pixel center at t = 1 E 20 20 Saturday, February 9, 13

  11. Shadow Rays • Detect shadow by rays to light source R ( t ) = S + t ( L − S ) Lights t ∈ [ ε ... 1 ) Occluder Shadow ray - Shadow ray - no shadow shadow Incoming (eye) ray 21 21 Shadow Rays • Test for occluder • No occluder, shade normally ( e.g. Phong model ) • Yes occluder, skip light ( don’t skip ambient ) • Self shadowing • Add shadow bias • Test object ID Self-shadowing Correct 22 22 Saturday, February 9, 13

  12. Reflection Rays • Recursive shading R ( t ) = S + t B • Ray bounces off object • Treat bounce rays (mostly) like eye rays t ∈ [ ε ... + ∞ ) • Shade bounce ray and return color • Shadow rays • Recursive reflections • Add color to shading at original point • Specular or separate reflection coefficient n ˆ 23 23 Reflection Rays • Recursion Depth • Truncate at fixed number of bounces • Multiplier less than J.N.D. 24 24 Saturday, February 9, 13

  13. Refracted Rays • Transparent materials bend light n i = sin θ t • Snell’s Law ( see clever formula in text... ) n t sin θ i Total (internal) reflection sin θ t > 1 I R θ i n i n t θ t T 25 25 Refracted Rays • Coefficient on transmitted ray depends on θ • Schlick approximation to Fresnel Equations k t ( θ i ) = k 0 +( 1 − k 0 )( 1 − cos θ i ) 5 ◆ 2 ✓ n t − 1 k 0 = n t + 1 • Attenuation • Wavelength (color) dependant • Exponential with distance 26 26 Saturday, February 9, 13

  14. Refracted Rays O’Brien and Hodgins, SIGGRAPH 1999 27 27 Anti-Aliasing • Boolean on/off for pixels causes problems • Consider scan conversion algorithm: • Compare to casting a ray through each pixel center • Recall Nyquist Theorem • Sampling rate ≥ twice highest frequency 28 28 Saturday, February 9, 13

  15. Anti-Aliasing • Desired solution of an integral over pixel 29 29 “Distributed” Raytracing • Send multiple rays through each pixel One Sample 5x5 Grid 5x5 Jittered Grid • Average results together • Jittering trades aliasing for noise 30 30 Saturday, February 9, 13

  16. “Distributed” Raytracing 31 31 Beverly Chiu and Max Delgadillo CS 184 2007 32 Saturday, February 9, 13

  17. “Distributed” Raytracing • Use multiple rays for reflection and refraction • At each bounce send out many extra rays • Quasi-random directions • Use BRDF (or Phong approximation) for weights • How many rays? 33 33 1 34 Saturday, February 9, 13

  18. 16 35 256 36 Saturday, February 9, 13

  19. Soft Shadows Penumbra Umbra Penumbra 37 37 Figure from S. Chenney Soft Shadows • Distribute shadow rays over light surface All shadow rays No shadow rays Some shadow go through go through rays go through 38 38 Figure from S. Chenney Saturday, February 9, 13

  20. 16 39 Motion Blur • Distribute rays over time • More when we talk about animation... Pool Balls Tom Porter RenderMan 40 40 Saturday, February 9, 13

  21. Depth of Field Kolb, Mitchell, and Hanrahan SIGGRAPH 1995 41 41 Depth of Field No DoF More rays Jittered rays for DoF Multiple images for DoF Even more rays 42 42 Saturday, February 9, 13

  22. Other Lens Effects Kolb, Mitchell, and Hanrahan 43 43 SIGGRAPH 1995 Ray -vs- Sphere Test • Ray equation: R ( t ) = A + t D | X − C | 2 − r 2 = 0 • Implicit equation for sphere: • Combine: | R ( t ) − C | 2 − r 2 = 0 | A + t D − C | 2 − r 2 = 0 r C • Quadratic equation in t D A 44 44 Saturday, February 9, 13

  23. Ray -vs- Sphere Test Two solutions One solution Imaginary 45 45 Ray -vs- Triangle • Ray equation: R ( t ) = A + t D • Triangle in barycentric coordinates: X ( β , γ ) = V 1 + β ( V 2 − V 1 )+ γ ( V 3 − V 1 ) • Combine: V 1 + β ( V 2 − V 1 )+ γ ( V 3 − V 1 ) = A + t D • Solve for β , γ , and t • 3 equations 3 unknowns • Beware divide by near-zero • Check ranges 46 46 Saturday, February 9, 13

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend