SlideShare une entreprise Scribd logo
1  sur  43
Télécharger pour lire hors ligne
computer graphics & visualization
Voxel-Based Global-Illumination
By Thiedemann, Henrich, Grosch, and Müller
Real-Time Near-Field Global Illumination on
a Voxel Model
Seyedmorteza Mostajabodaveh (Morteza),
M.Sc. Marc Treib
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Overview
• Illumination
• What is voxelization?
• Paper’s Voxelization Method
• Paper’s Voxel/Ray Intersection Method
• Near Global-Illumination Based on Voxel-Model
• Results
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Illumination
• Direct Illumination
• Indirect Illumination
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Types of Illumination
• Direct Illumination
– Reflection can be computed locally (using Normal
and Material Specification)
– Local Illumination
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Types of Illumination
• Indirect Illumination
• The reflected light cannot be computed locally
– Global Illumination
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Ray Tracing
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Ray Tracing Algorithm
Image Raytrace (Camera cam, Scene scene, int width, int height)
{
Image image = new Image (width, height) ;
for (int i = 0 ; i < height ; i++)
for (int j = 0 ; j < width ; j++) {
Ray ray = RayThruPixel (cam, i, j) ;
Intersection hit = Intersect (ray, scene) ;
image[i][j] = FindColor (hit) ;
}
return image ;
}
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Ray Tracing Algorithm
Image Raytrace (Camera cam, Scene scene, int width, int height)
{
Image image = new Image (width, height) ;
for (int i = 0 ; i < height ; i++)
for (int j = 0 ; j < width ; j++) {
Ray ray = RayThruPixel (cam, i, j) ;
Intersection hit = Intersect (ray, scene) ;
image[i][j] = FindColor (hit) ;
}
return image ;
}
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Ray Tracing Accelaration
• Classification of Accelaration Techniques for ray
tracing
– Faster ray-object intersections
– Fewer Ray-Object Intersections
– Fewer Rays
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
What is voxelization?
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Types of Voxelization
• Binary Voxelization
– A cell stores whether geometry is present in this
cell or not
• Multi-Valued Voxelization
– A cell can also stores arbitrary other data like BRDF,
normal or Radiance
• Boundary Voxelization
– Encodes the object surfaces only
• Solid Voxelization
– Captures the interior of a model
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Contributions
• A new atlas-based voxelization method
• An improved ray/voxel intersection test
• Real-time near-field illumination with
voxel visibility
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Goal
• Computing global illumination in real time,
given a large and dynamic scene.
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Atlas-Based Voxelization (1/5)
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Atlas-Based Voxelization (2/5)
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Atlas-Based Voxelization (3/5)
• Performance is directly related to the number
of rendered vertices
• Sufficient atlas-texture resolution
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Atlas-Based Voxelization (4/5)
• Environment
– Geforce GTX 295, Intel Core 2 Duo 3.16 Ghz, 4 GB RAM
• Performance
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Atlas-Based Voxelization (5/5)
• Pros
– No restrictions to the objects
– Applicable for dynamics rigid bodies and
moderately deforming models
• Cons
– Each object has to have a texture atlas
– Low atlas texture resolution causes holes in
voxelization
– Not allow strong deformation of the objects
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Ray Tracing Accelaration
• Classification of Accelaration Techniques for ray
tracing
– Faster ray-object intersections
• Efficient intersectors
– Fewer Ray-Object Intersections
• Bounding Volumes (Boxes, Spheres)
• Space Subdivision
– Fewer Rays
• Adaptive Tree-Depth Control
• Stochastic Sampling
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Hierarchical Ray-Voxel Intersection Test
(1/3)
• Use a binary voxelized scene
representation(Why only in 2-dimensions)
• Build a Maximum mip-map hierarchy
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Hierarchical Ray-Voxel Intersection Test
(2/3)
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Hierarchical Ray-Voxel Intersection Test
(2/3)
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Hierarchical Ray-Voxel Intersection Test
(2/3)
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Hierarchical Ray-Voxel Intersection Test
(2/3)
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Hierarchical Ray-Voxel Intersection Test
(2/3)
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Hierarchical Ray-Voxel Intersection Test
(2/3)
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Hierarchical Ray-Voxel Intersection Test
(3/3)
• Algorithm
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Ray Tracing Algorithm
Image Raytrace (Camera cam, Scene scene, int width, int height)
{
Image image = new Image (width, height) ;
for (int i = 0 ; i < height ; i++)
for (int j = 0 ; j < width ; j++) {
Ray ray = RayThruPixel (cam, i, j) ;
Intersection hit = Intersect (ray, scene) ;
image[i][j] = FindColor (hit) ;
}
return image ;
}
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Outgoing Radiance
𝐿 𝑜 𝑝, 𝜔 𝑜 =
2𝜋+
𝑓𝑟 𝑝, 𝜔𝑖, 𝜔 𝑜 𝐿𝑖 𝑝, 𝜔𝑖 cos 𝜃𝑖 𝑑 𝜔 𝑖
BRDF
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Outgoing Radiance
𝐿 𝑜 𝑝, 𝜔 𝑜 =
2𝜋+
𝑓𝑟 𝑝, 𝜔𝑖, 𝜔 𝑜 𝐿𝑖 𝑝, 𝜔𝑖 cos 𝜃𝑖 𝑑 𝜔 𝑖
BRDF
Outgoing Direction Incoming Direction
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Monte Carlo Estimator
𝑰 =
𝒂
𝒃
𝒇 𝒙 𝒅𝒙
Monte Carlo Estimator: 𝑰 =
𝒃−𝒂
𝒏 𝒋=𝟏
𝒏
𝒇(𝒙𝒋)
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Monte Carlo Importance Sampling
Monte Carlo Estimator: 𝑰 =
𝒃−𝒂
𝒏 𝒋=𝟏
𝒏 𝒇(𝒙 𝒋)
𝒑(𝒙 𝒋)
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
𝐿 𝑜 𝑝, 𝜔 𝑜 =
2𝜋+
𝑓𝑟 𝑝, 𝜔𝑖, 𝜔 𝑜 𝐿𝑖 𝑝, 𝜔𝑖 cos 𝜃𝑖 𝑑 𝜔 𝑖
Outgoing Radiance
𝐿 𝑜 𝑝, 𝜔 𝑜 =
2𝜋+
𝑓𝑟 𝑝, 𝜔𝑖, 𝜔 𝑜 𝐿 𝑜 𝑟(𝑝, 𝜔𝑖), −𝜔𝑖 cos 𝜃𝑖 𝑑 𝜔 𝑖
𝐿𝑖 𝑝, 𝜔𝑖 = 𝐿 𝑜 𝑟(𝑝, 𝜔𝑖), −𝜔𝑖
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
One Bounce is enough!
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Real-Time Near-Field Single Bounce Indirect
Light
• Generate RSM (Reflective
Shadow Map) for fast
near-field illumination
• Shoot N rays from x with
maximum distance r
• Find first intersection
point using binary
voxelization
• Gather direct radiance
from RSM
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Real-Time Near-Field Single Bounce Indirect
Light
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Results (movie)
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Results
• The effect of changing the voxel resolution
32x32x128 (47fps) 64x64x128 (36fps) 128x128x128 (25fps)
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Results
• Voxel-Based Single Bounce illumination with
different Radiuses R
R = 1.5 (37 fps) R = 4.0 - center (27 fps) R = 4.0 – right (21 fps)
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Results 2 (Movie)
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Thank you very much!!! :D
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
Questions?
computer graphics & visualization
Real-Time Near-Field Global Illumination Based on Voxel Model
Seyedmorteza Mostajabodaveh
References
Reference Name Author
TUM’s Computer Graphics Course Slides –
2013
Prof. Westermann, TU-Munich
Ray Tracing from Group Up, 2007 by AK
Peters Ltd
Kevvin Suffern
GPU Pro 3, 2012 by CRC Press Wolfgang Engel
An Approximate Global-Illumination
System for Computer Generated Films
Tabellion, E. And Lamorlette, A.
Voxel-Based Global Illumination,
Proceedings of ACM Symposium on
Interactive 3D Graphics and Games 2011
(I3D'11)
Thiedemann, Henrich, Grosch, and Müller
Voxel-Based Global Illumination slides at
Computer Graphics and Image Processing
Lab, SNU
http://graphics.snu.ac.kr/class/graphics2011/materials/paper09_voxel_gi.pdf
Jin Hur, Junhyuk Yoon

Contenu connexe

Tendances

A Certain Slant of Light - Past, Present and Future Challenges of Global Illu...
A Certain Slant of Light - Past, Present and Future Challenges of Global Illu...A Certain Slant of Light - Past, Present and Future Challenges of Global Illu...
A Certain Slant of Light - Past, Present and Future Challenges of Global Illu...Electronic Arts / DICE
 
Five Rendering Ideas from Battlefield 3 & Need For Speed: The Run
Five Rendering Ideas from Battlefield 3 & Need For Speed: The RunFive Rendering Ideas from Battlefield 3 & Need For Speed: The Run
Five Rendering Ideas from Battlefield 3 & Need For Speed: The RunElectronic Arts / DICE
 
Paris Master Class 2011 - 07 Dynamic Global Illumination
Paris Master Class 2011 - 07 Dynamic Global IlluminationParis Master Class 2011 - 07 Dynamic Global Illumination
Paris Master Class 2011 - 07 Dynamic Global IlluminationWolfgang Engel
 
Introduction to Bidirectional Path Tracing (BDPT) & Implementation using Open...
Introduction to Bidirectional Path Tracing (BDPT) & Implementation using Open...Introduction to Bidirectional Path Tracing (BDPT) & Implementation using Open...
Introduction to Bidirectional Path Tracing (BDPT) & Implementation using Open...Takahiro Harada
 
Stable SSAO in Battlefield 3 with Selective Temporal Filtering
Stable SSAO in Battlefield 3 with Selective Temporal FilteringStable SSAO in Battlefield 3 with Selective Temporal Filtering
Stable SSAO in Battlefield 3 with Selective Temporal FilteringElectronic Arts / DICE
 
The Rendering Technology of Killzone 2
The Rendering Technology of Killzone 2The Rendering Technology of Killzone 2
The Rendering Technology of Killzone 2Guerrilla
 
Physically Based and Unified Volumetric Rendering in Frostbite
Physically Based and Unified Volumetric Rendering in FrostbitePhysically Based and Unified Volumetric Rendering in Frostbite
Physically Based and Unified Volumetric Rendering in FrostbiteElectronic Arts / DICE
 
4K Checkerboard in Battlefield 1 and Mass Effect Andromeda
4K Checkerboard in Battlefield 1 and Mass Effect Andromeda4K Checkerboard in Battlefield 1 and Mass Effect Andromeda
4K Checkerboard in Battlefield 1 and Mass Effect AndromedaElectronic Arts / DICE
 
Physically Based Sky, Atmosphere and Cloud Rendering in Frostbite
Physically Based Sky, Atmosphere and Cloud Rendering in FrostbitePhysically Based Sky, Atmosphere and Cloud Rendering in Frostbite
Physically Based Sky, Atmosphere and Cloud Rendering in FrostbiteElectronic Arts / DICE
 
SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3
SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3
SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3Electronic Arts / DICE
 
Taking Killzone Shadow Fall Image Quality Into The Next Generation
Taking Killzone Shadow Fall Image Quality Into The Next GenerationTaking Killzone Shadow Fall Image Quality Into The Next Generation
Taking Killzone Shadow Fall Image Quality Into The Next GenerationGuerrilla
 
Screen Space Reflections in The Surge
Screen Space Reflections in The SurgeScreen Space Reflections in The Surge
Screen Space Reflections in The SurgeMichele Giacalone
 

Tendances (20)

A Certain Slant of Light - Past, Present and Future Challenges of Global Illu...
A Certain Slant of Light - Past, Present and Future Challenges of Global Illu...A Certain Slant of Light - Past, Present and Future Challenges of Global Illu...
A Certain Slant of Light - Past, Present and Future Challenges of Global Illu...
 
Lighting the City of Glass
Lighting the City of GlassLighting the City of Glass
Lighting the City of Glass
 
A Real-time Radiosity Architecture
A Real-time Radiosity ArchitectureA Real-time Radiosity Architecture
A Real-time Radiosity Architecture
 
Five Rendering Ideas from Battlefield 3 & Need For Speed: The Run
Five Rendering Ideas from Battlefield 3 & Need For Speed: The RunFive Rendering Ideas from Battlefield 3 & Need For Speed: The Run
Five Rendering Ideas from Battlefield 3 & Need For Speed: The Run
 
Paris Master Class 2011 - 07 Dynamic Global Illumination
Paris Master Class 2011 - 07 Dynamic Global IlluminationParis Master Class 2011 - 07 Dynamic Global Illumination
Paris Master Class 2011 - 07 Dynamic Global Illumination
 
Introduction to Bidirectional Path Tracing (BDPT) & Implementation using Open...
Introduction to Bidirectional Path Tracing (BDPT) & Implementation using Open...Introduction to Bidirectional Path Tracing (BDPT) & Implementation using Open...
Introduction to Bidirectional Path Tracing (BDPT) & Implementation using Open...
 
Stable SSAO in Battlefield 3 with Selective Temporal Filtering
Stable SSAO in Battlefield 3 with Selective Temporal FilteringStable SSAO in Battlefield 3 with Selective Temporal Filtering
Stable SSAO in Battlefield 3 with Selective Temporal Filtering
 
Light prepass
Light prepassLight prepass
Light prepass
 
The Rendering Technology of Killzone 2
The Rendering Technology of Killzone 2The Rendering Technology of Killzone 2
The Rendering Technology of Killzone 2
 
Shiny PC Graphics in Battlefield 3
Shiny PC Graphics in Battlefield 3Shiny PC Graphics in Battlefield 3
Shiny PC Graphics in Battlefield 3
 
Physically Based and Unified Volumetric Rendering in Frostbite
Physically Based and Unified Volumetric Rendering in FrostbitePhysically Based and Unified Volumetric Rendering in Frostbite
Physically Based and Unified Volumetric Rendering in Frostbite
 
4K Checkerboard in Battlefield 1 and Mass Effect Andromeda
4K Checkerboard in Battlefield 1 and Mass Effect Andromeda4K Checkerboard in Battlefield 1 and Mass Effect Andromeda
4K Checkerboard in Battlefield 1 and Mass Effect Andromeda
 
The Unique Lighting of Mirror's Edge
The Unique Lighting of Mirror's EdgeThe Unique Lighting of Mirror's Edge
The Unique Lighting of Mirror's Edge
 
Lighting you up in Battlefield 3
Lighting you up in Battlefield 3Lighting you up in Battlefield 3
Lighting you up in Battlefield 3
 
Physically Based Sky, Atmosphere and Cloud Rendering in Frostbite
Physically Based Sky, Atmosphere and Cloud Rendering in FrostbitePhysically Based Sky, Atmosphere and Cloud Rendering in Frostbite
Physically Based Sky, Atmosphere and Cloud Rendering in Frostbite
 
SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3
SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3
SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3
 
Stochastic Screen-Space Reflections
Stochastic Screen-Space ReflectionsStochastic Screen-Space Reflections
Stochastic Screen-Space Reflections
 
Taking Killzone Shadow Fall Image Quality Into The Next Generation
Taking Killzone Shadow Fall Image Quality Into The Next GenerationTaking Killzone Shadow Fall Image Quality Into The Next Generation
Taking Killzone Shadow Fall Image Quality Into The Next Generation
 
Global illumination
Global illuminationGlobal illumination
Global illumination
 
Screen Space Reflections in The Surge
Screen Space Reflections in The SurgeScreen Space Reflections in The Surge
Screen Space Reflections in The Surge
 

En vedette

Sampling strategies for Sequential Monte Carlo (SMC) methods
Sampling strategies for Sequential Monte Carlo (SMC) methodsSampling strategies for Sequential Monte Carlo (SMC) methods
Sampling strategies for Sequential Monte Carlo (SMC) methodsStephane Senecal
 
PRML Reading Chapter 11 - Sampling Method
PRML Reading Chapter 11 - Sampling MethodPRML Reading Chapter 11 - Sampling Method
PRML Reading Chapter 11 - Sampling MethodHa Phuong
 
Illumination model
Illumination modelIllumination model
Illumination modelAnkur Kumar
 
Slit Lamp Illumination Techniques
Slit Lamp Illumination TechniquesSlit Lamp Illumination Techniques
Slit Lamp Illumination TechniquesIrina Kezik
 

En vedette (10)

Sampling strategies for Sequential Monte Carlo (SMC) methods
Sampling strategies for Sequential Monte Carlo (SMC) methodsSampling strategies for Sequential Monte Carlo (SMC) methods
Sampling strategies for Sequential Monte Carlo (SMC) methods
 
Illumination Model
Illumination ModelIllumination Model
Illumination Model
 
Gesture recognition technology
Gesture recognition technologyGesture recognition technology
Gesture recognition technology
 
PRML Reading Chapter 11 - Sampling Method
PRML Reading Chapter 11 - Sampling MethodPRML Reading Chapter 11 - Sampling Method
PRML Reading Chapter 11 - Sampling Method
 
Final Presentation
Final PresentationFinal Presentation
Final Presentation
 
Polygon mesh
Polygon  meshPolygon  mesh
Polygon mesh
 
Illumination model
Illumination modelIllumination model
Illumination model
 
Slit lamp biomicroscope
Slit lamp biomicroscopeSlit lamp biomicroscope
Slit lamp biomicroscope
 
Retinoscopy and its principles
Retinoscopy and its principlesRetinoscopy and its principles
Retinoscopy and its principles
 
Slit Lamp Illumination Techniques
Slit Lamp Illumination TechniquesSlit Lamp Illumination Techniques
Slit Lamp Illumination Techniques
 

Similaire à Voxel based global-illumination

Introduction to Binocular Stereo in Computer Vision
Introduction to Binocular Stereo in Computer VisionIntroduction to Binocular Stereo in Computer Vision
Introduction to Binocular Stereo in Computer Visionothersk46
 
SIGGRAPH 2012 Computational Plenoptic Imaging Course - 3 Spectral Imaging
SIGGRAPH 2012 Computational Plenoptic Imaging Course - 3 Spectral ImagingSIGGRAPH 2012 Computational Plenoptic Imaging Course - 3 Spectral Imaging
SIGGRAPH 2012 Computational Plenoptic Imaging Course - 3 Spectral ImagingGordon Wetzstein
 
Lec14 multiview stereo
Lec14 multiview stereoLec14 multiview stereo
Lec14 multiview stereoBaliThorat1
 
論文読み会@AIST (Deep Virtual Stereo Odometry [ECCV2018])
論文読み会@AIST (Deep Virtual Stereo Odometry [ECCV2018])論文読み会@AIST (Deep Virtual Stereo Odometry [ECCV2018])
論文読み会@AIST (Deep Virtual Stereo Odometry [ECCV2018])Masaya Kaneko
 
Lec13 stereo converted
Lec13 stereo convertedLec13 stereo converted
Lec13 stereo convertedBaliThorat1
 
3-d interpretation from single 2-d image III
3-d interpretation from single 2-d image III3-d interpretation from single 2-d image III
3-d interpretation from single 2-d image IIIYu Huang
 
IAA-LA2-10-01 Spectral and Radiometric Calibration Procedure for a SWIR Hyper...
IAA-LA2-10-01 Spectral and Radiometric Calibration Procedure for a SWIR Hyper...IAA-LA2-10-01 Spectral and Radiometric Calibration Procedure for a SWIR Hyper...
IAA-LA2-10-01 Spectral and Radiometric Calibration Procedure for a SWIR Hyper...Christian Gabriel Gomez
 
Shadow Techniques for Real-Time and Interactive Applications
Shadow Techniques for Real-Time and Interactive ApplicationsShadow Techniques for Real-Time and Interactive Applications
Shadow Techniques for Real-Time and Interactive Applicationsstefan_b
 
Rendering Algorithms.pptx
Rendering Algorithms.pptxRendering Algorithms.pptx
Rendering Algorithms.pptxSherinRappai
 
Advanced Lighting for Interactive Applications
Advanced Lighting for Interactive ApplicationsAdvanced Lighting for Interactive Applications
Advanced Lighting for Interactive Applicationsstefan_b
 
SIGGRAPH 2014 Course on Computational Cameras and Displays (part 4)
SIGGRAPH 2014 Course on Computational Cameras and Displays (part 4)SIGGRAPH 2014 Course on Computational Cameras and Displays (part 4)
SIGGRAPH 2014 Course on Computational Cameras and Displays (part 4)Matthew O'Toole
 
Monte carlo methods in graphics and hacking
Monte carlo methods in graphics and hackingMonte carlo methods in graphics and hacking
Monte carlo methods in graphics and hackingHimanshu Goel
 
Sem 2 Presentation
Sem 2 PresentationSem 2 Presentation
Sem 2 PresentationShalom Cohen
 
>A Switchable Light Field Camera Architecture with Angle SEnsitive Pixels and...
>A Switchable Light Field Camera Architecture with Angle SEnsitive Pixels and...>A Switchable Light Field Camera Architecture with Angle SEnsitive Pixels and...
>A Switchable Light Field Camera Architecture with Angle SEnsitive Pixels and...Matt Hirsch - MIT Media Lab
 
Understanding neural radiance fields
Understanding neural radiance fieldsUnderstanding neural radiance fields
Understanding neural radiance fieldsVarun Bhaseen
 
CATalkOnline.ppt
CATalkOnline.pptCATalkOnline.ppt
CATalkOnline.pptSamar954063
 
Visual Saliency: Learning to Detect Salient Objects
Visual Saliency: Learning to Detect Salient ObjectsVisual Saliency: Learning to Detect Salient Objects
Visual Saliency: Learning to Detect Salient ObjectsVicente Ordonez
 

Similaire à Voxel based global-illumination (20)

Introduction to Binocular Stereo in Computer Vision
Introduction to Binocular Stereo in Computer VisionIntroduction to Binocular Stereo in Computer Vision
Introduction to Binocular Stereo in Computer Vision
 
SIGGRAPH 2012 Computational Plenoptic Imaging Course - 3 Spectral Imaging
SIGGRAPH 2012 Computational Plenoptic Imaging Course - 3 Spectral ImagingSIGGRAPH 2012 Computational Plenoptic Imaging Course - 3 Spectral Imaging
SIGGRAPH 2012 Computational Plenoptic Imaging Course - 3 Spectral Imaging
 
Lec14 multiview stereo
Lec14 multiview stereoLec14 multiview stereo
Lec14 multiview stereo
 
論文読み会@AIST (Deep Virtual Stereo Odometry [ECCV2018])
論文読み会@AIST (Deep Virtual Stereo Odometry [ECCV2018])論文読み会@AIST (Deep Virtual Stereo Odometry [ECCV2018])
論文読み会@AIST (Deep Virtual Stereo Odometry [ECCV2018])
 
Lec13 stereo converted
Lec13 stereo convertedLec13 stereo converted
Lec13 stereo converted
 
3-d interpretation from single 2-d image III
3-d interpretation from single 2-d image III3-d interpretation from single 2-d image III
3-d interpretation from single 2-d image III
 
IAA-LA2-10-01 Spectral and Radiometric Calibration Procedure for a SWIR Hyper...
IAA-LA2-10-01 Spectral and Radiometric Calibration Procedure for a SWIR Hyper...IAA-LA2-10-01 Spectral and Radiometric Calibration Procedure for a SWIR Hyper...
IAA-LA2-10-01 Spectral and Radiometric Calibration Procedure for a SWIR Hyper...
 
Shadow Techniques for Real-Time and Interactive Applications
Shadow Techniques for Real-Time and Interactive ApplicationsShadow Techniques for Real-Time and Interactive Applications
Shadow Techniques for Real-Time and Interactive Applications
 
Computational Photography_TED.pptx
Computational Photography_TED.pptxComputational Photography_TED.pptx
Computational Photography_TED.pptx
 
FinalPoster
FinalPosterFinalPoster
FinalPoster
 
Rendering Algorithms.pptx
Rendering Algorithms.pptxRendering Algorithms.pptx
Rendering Algorithms.pptx
 
Advanced Lighting for Interactive Applications
Advanced Lighting for Interactive ApplicationsAdvanced Lighting for Interactive Applications
Advanced Lighting for Interactive Applications
 
SIGGRAPH 2014 Course on Computational Cameras and Displays (part 4)
SIGGRAPH 2014 Course on Computational Cameras and Displays (part 4)SIGGRAPH 2014 Course on Computational Cameras and Displays (part 4)
SIGGRAPH 2014 Course on Computational Cameras and Displays (part 4)
 
Computer Vision Workshop
Computer Vision WorkshopComputer Vision Workshop
Computer Vision Workshop
 
Monte carlo methods in graphics and hacking
Monte carlo methods in graphics and hackingMonte carlo methods in graphics and hacking
Monte carlo methods in graphics and hacking
 
Sem 2 Presentation
Sem 2 PresentationSem 2 Presentation
Sem 2 Presentation
 
>A Switchable Light Field Camera Architecture with Angle SEnsitive Pixels and...
>A Switchable Light Field Camera Architecture with Angle SEnsitive Pixels and...>A Switchable Light Field Camera Architecture with Angle SEnsitive Pixels and...
>A Switchable Light Field Camera Architecture with Angle SEnsitive Pixels and...
 
Understanding neural radiance fields
Understanding neural radiance fieldsUnderstanding neural radiance fields
Understanding neural radiance fields
 
CATalkOnline.ppt
CATalkOnline.pptCATalkOnline.ppt
CATalkOnline.ppt
 
Visual Saliency: Learning to Detect Salient Objects
Visual Saliency: Learning to Detect Salient ObjectsVisual Saliency: Learning to Detect Salient Objects
Visual Saliency: Learning to Detect Salient Objects
 

Dernier

Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
React Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkReact Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkPixlogix Infotech
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxfnnc6jmgwh
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024TopCSSGallery
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfIngrid Airi González
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...itnewsafrica
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructureitnewsafrica
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 

Dernier (20)

Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
React Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkReact Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App Framework
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdf
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 

Voxel based global-illumination

  • 1. computer graphics & visualization Voxel-Based Global-Illumination By Thiedemann, Henrich, Grosch, and Müller Real-Time Near-Field Global Illumination on a Voxel Model Seyedmorteza Mostajabodaveh (Morteza), M.Sc. Marc Treib
  • 2. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Overview • Illumination • What is voxelization? • Paper’s Voxelization Method • Paper’s Voxel/Ray Intersection Method • Near Global-Illumination Based on Voxel-Model • Results
  • 3. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Illumination • Direct Illumination • Indirect Illumination
  • 4. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Types of Illumination • Direct Illumination – Reflection can be computed locally (using Normal and Material Specification) – Local Illumination
  • 5. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Types of Illumination • Indirect Illumination • The reflected light cannot be computed locally – Global Illumination
  • 6. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Ray Tracing
  • 7. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Ray Tracing Algorithm Image Raytrace (Camera cam, Scene scene, int width, int height) { Image image = new Image (width, height) ; for (int i = 0 ; i < height ; i++) for (int j = 0 ; j < width ; j++) { Ray ray = RayThruPixel (cam, i, j) ; Intersection hit = Intersect (ray, scene) ; image[i][j] = FindColor (hit) ; } return image ; }
  • 8. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Ray Tracing Algorithm Image Raytrace (Camera cam, Scene scene, int width, int height) { Image image = new Image (width, height) ; for (int i = 0 ; i < height ; i++) for (int j = 0 ; j < width ; j++) { Ray ray = RayThruPixel (cam, i, j) ; Intersection hit = Intersect (ray, scene) ; image[i][j] = FindColor (hit) ; } return image ; }
  • 9. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Ray Tracing Accelaration • Classification of Accelaration Techniques for ray tracing – Faster ray-object intersections – Fewer Ray-Object Intersections – Fewer Rays
  • 10. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh What is voxelization?
  • 11. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Types of Voxelization • Binary Voxelization – A cell stores whether geometry is present in this cell or not • Multi-Valued Voxelization – A cell can also stores arbitrary other data like BRDF, normal or Radiance • Boundary Voxelization – Encodes the object surfaces only • Solid Voxelization – Captures the interior of a model
  • 12. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Contributions • A new atlas-based voxelization method • An improved ray/voxel intersection test • Real-time near-field illumination with voxel visibility
  • 13. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Goal • Computing global illumination in real time, given a large and dynamic scene.
  • 14. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Atlas-Based Voxelization (1/5)
  • 15. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Atlas-Based Voxelization (2/5)
  • 16. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Atlas-Based Voxelization (3/5) • Performance is directly related to the number of rendered vertices • Sufficient atlas-texture resolution
  • 17. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Atlas-Based Voxelization (4/5) • Environment – Geforce GTX 295, Intel Core 2 Duo 3.16 Ghz, 4 GB RAM • Performance
  • 18. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Atlas-Based Voxelization (5/5) • Pros – No restrictions to the objects – Applicable for dynamics rigid bodies and moderately deforming models • Cons – Each object has to have a texture atlas – Low atlas texture resolution causes holes in voxelization – Not allow strong deformation of the objects
  • 19. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Ray Tracing Accelaration • Classification of Accelaration Techniques for ray tracing – Faster ray-object intersections • Efficient intersectors – Fewer Ray-Object Intersections • Bounding Volumes (Boxes, Spheres) • Space Subdivision – Fewer Rays • Adaptive Tree-Depth Control • Stochastic Sampling
  • 20. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Hierarchical Ray-Voxel Intersection Test (1/3) • Use a binary voxelized scene representation(Why only in 2-dimensions) • Build a Maximum mip-map hierarchy
  • 21. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Hierarchical Ray-Voxel Intersection Test (2/3)
  • 22. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Hierarchical Ray-Voxel Intersection Test (2/3)
  • 23. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Hierarchical Ray-Voxel Intersection Test (2/3)
  • 24. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Hierarchical Ray-Voxel Intersection Test (2/3)
  • 25. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Hierarchical Ray-Voxel Intersection Test (2/3)
  • 26. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Hierarchical Ray-Voxel Intersection Test (2/3)
  • 27. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Hierarchical Ray-Voxel Intersection Test (3/3) • Algorithm
  • 28. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Ray Tracing Algorithm Image Raytrace (Camera cam, Scene scene, int width, int height) { Image image = new Image (width, height) ; for (int i = 0 ; i < height ; i++) for (int j = 0 ; j < width ; j++) { Ray ray = RayThruPixel (cam, i, j) ; Intersection hit = Intersect (ray, scene) ; image[i][j] = FindColor (hit) ; } return image ; }
  • 29. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Outgoing Radiance 𝐿 𝑜 𝑝, 𝜔 𝑜 = 2𝜋+ 𝑓𝑟 𝑝, 𝜔𝑖, 𝜔 𝑜 𝐿𝑖 𝑝, 𝜔𝑖 cos 𝜃𝑖 𝑑 𝜔 𝑖 BRDF
  • 30. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Outgoing Radiance 𝐿 𝑜 𝑝, 𝜔 𝑜 = 2𝜋+ 𝑓𝑟 𝑝, 𝜔𝑖, 𝜔 𝑜 𝐿𝑖 𝑝, 𝜔𝑖 cos 𝜃𝑖 𝑑 𝜔 𝑖 BRDF Outgoing Direction Incoming Direction
  • 31. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Monte Carlo Estimator 𝑰 = 𝒂 𝒃 𝒇 𝒙 𝒅𝒙 Monte Carlo Estimator: 𝑰 = 𝒃−𝒂 𝒏 𝒋=𝟏 𝒏 𝒇(𝒙𝒋)
  • 32. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Monte Carlo Importance Sampling Monte Carlo Estimator: 𝑰 = 𝒃−𝒂 𝒏 𝒋=𝟏 𝒏 𝒇(𝒙 𝒋) 𝒑(𝒙 𝒋)
  • 33. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh 𝐿 𝑜 𝑝, 𝜔 𝑜 = 2𝜋+ 𝑓𝑟 𝑝, 𝜔𝑖, 𝜔 𝑜 𝐿𝑖 𝑝, 𝜔𝑖 cos 𝜃𝑖 𝑑 𝜔 𝑖 Outgoing Radiance 𝐿 𝑜 𝑝, 𝜔 𝑜 = 2𝜋+ 𝑓𝑟 𝑝, 𝜔𝑖, 𝜔 𝑜 𝐿 𝑜 𝑟(𝑝, 𝜔𝑖), −𝜔𝑖 cos 𝜃𝑖 𝑑 𝜔 𝑖 𝐿𝑖 𝑝, 𝜔𝑖 = 𝐿 𝑜 𝑟(𝑝, 𝜔𝑖), −𝜔𝑖
  • 34. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh One Bounce is enough!
  • 35. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Real-Time Near-Field Single Bounce Indirect Light • Generate RSM (Reflective Shadow Map) for fast near-field illumination • Shoot N rays from x with maximum distance r • Find first intersection point using binary voxelization • Gather direct radiance from RSM
  • 36. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Real-Time Near-Field Single Bounce Indirect Light
  • 37. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Results (movie)
  • 38. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Results • The effect of changing the voxel resolution 32x32x128 (47fps) 64x64x128 (36fps) 128x128x128 (25fps)
  • 39. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Results • Voxel-Based Single Bounce illumination with different Radiuses R R = 1.5 (37 fps) R = 4.0 - center (27 fps) R = 4.0 – right (21 fps)
  • 40. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Results 2 (Movie)
  • 41. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Thank you very much!!! :D
  • 42. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh Questions?
  • 43. computer graphics & visualization Real-Time Near-Field Global Illumination Based on Voxel Model Seyedmorteza Mostajabodaveh References Reference Name Author TUM’s Computer Graphics Course Slides – 2013 Prof. Westermann, TU-Munich Ray Tracing from Group Up, 2007 by AK Peters Ltd Kevvin Suffern GPU Pro 3, 2012 by CRC Press Wolfgang Engel An Approximate Global-Illumination System for Computer Generated Films Tabellion, E. And Lamorlette, A. Voxel-Based Global Illumination, Proceedings of ACM Symposium on Interactive 3D Graphics and Games 2011 (I3D'11) Thiedemann, Henrich, Grosch, and Müller Voxel-Based Global Illumination slides at Computer Graphics and Image Processing Lab, SNU http://graphics.snu.ac.kr/class/graphics2011/materials/paper09_voxel_gi.pdf Jin Hur, Junhyuk Yoon