1 / 14

Optimally Combining Sampling Techniques for Monte Carlo Rendering

Optimally Combining Sampling Techniques for Monte Carlo Rendering. Eric Veach and Leonidas J. Guibas Computer Science Department Stanford University SIGGRAPH 1995. Roughness. Specular. Highly specular surface and large light source. Very rough surface and small light source. Variance.

ezhno
Télécharger la présentation

Optimally Combining Sampling Techniques for Monte Carlo Rendering

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Optimally Combining Sampling Techniques for Monte Carlo Rendering Eric Veach and Leonidas J. Guibas Computer Science Department Stanford University SIGGRAPH 1995

  2. Roughness Specular Highly specular surface and large light source Very rough surface and small light source Variance Sampling the light sources Sampling the BRDF

  3. ,where Multi-sample Model Weighted combination of all the sample values An example of wi ci: relative number of samples taken from pi (balance heuristic)

  4. Theorem 1 wi: any non-negative functions with No choice of the wi can improve upon the variance of the balance heuristic by more than (1/minini – 1/N)F2

  5. Weighting Heuristics (a) balance (b) cutoff (c) power (d) maximum

  6. variance roughness

  7. Combine Sampling With power heuristic

  8. A simple test scene One area light source and an adjacent diffuse surface. (a) (b) (c) (a) Sampling the light source (b) Sampling the hemisphere according to the projected solid angle (c) Combination of samples using the power heuristic

  9. Bidirectional Path Tracing

  10. Bidirectional Sampling Strategies • Standard MC path tracing. • Standard MC path tracing with direct lighting. • Depositing light on a visible surface (photomap). • Depositing light when a photon hits the camera lens.

  11. Bidirectional Path Tracing 25 samples per pixel 56 samples per pixel Standard path tracing using the same amount of work (same computation time) Combines samples from all the bidirectional techniques

  12. Conclusion • Power heuristic (with beta=2) gave the best results. • These techniques are practical, and the additional cost is small – less than 10%

  13. PBRT PBRT define balance and power heuristic in “mc.h” inline float BalanceHeuristic(int nf, float fPdf, int ng, float gPdf) { return (nf * fPdf) / (nf * fPdf + ng * gPdf); } inline float PowerHeuristic(int nf, float fPdf, int ng, float gPdf) { float f = nf * fPdf, g = ng * gPdf; return (f*f) / (f*f + g*g); }

More Related