SlideShare a Scribd company logo
1 of 31
Multi-Resolution Screen-Space Ambient Occlusion Thai-Duong Hoang Kok-Lim Low National University of Singapore 1
Ambient Occlusion (AO) 𝐩   𝐪   2
AO Cosine-weightedfraction of a tangent hemisphere that is occluded 𝐪i   𝐧   𝜽𝒊   𝒅𝒊   𝐩   𝑑𝑚𝑎𝑥   𝐴𝑂𝐩=1𝜋Ω𝜌𝐩,𝑑𝑖cos𝜃𝑖𝑑𝑤𝑖   𝑑𝑖≥𝑑𝑚𝑎𝑥:𝜌=0𝑑𝑖=0        : 𝜌=1   3
Screen-Space AO (SSAO) 𝐩   Volumetric AO [SKUT10] 4
SSAO(Dis)Advantages Inaccurate Local AO Over/underestimated AO Low quality Noise Blur Simple Fast General Easy to integrate 5
Multi-Resolution AO (MSSAO)Intuition 𝐴𝑂2   𝐴𝑂1   𝐴𝑂3   𝐴𝑂𝑓𝑖𝑛𝑎𝑙=max𝐴𝑂𝑖   6
Multi-Resolution AO (MSSAO)Intuition 256x256 𝐴𝑂256   512x512 𝐴𝑂512   1024x1024 𝐴𝑂1024   𝐴𝑂𝑓𝑖𝑛𝑎𝑙=fmax𝐴𝑂𝑖, average𝐴𝑂𝑖𝐴𝑂𝑓𝑖𝑛𝑎𝑙≥max𝐴𝑂𝑖𝐴𝑂𝑓𝑖𝑛𝑎𝑙∝average𝐴𝑂𝑖   7
MSSAOOverview Geometry g-buffer (1024x1024) Downsample Compute AO (256x256) AO buffer (256x256) g-buffer (256x256) Blur & Upsample g-buffer (512x512) Compute AO (512x512) AO buffer (512x512) Blur & Upsample Compute AO (1024x1024) g-buffer (1024x1024) AO buffer (1024x1024) 8
MSSAOAO from Multiple Resolutions 9
MSSAOOverview Geometry g-buffer (1024x1024) Downsample Compute AO (256x256) AO buffer (256x256) g-buffer (256x256) Blur & Upsample g-buffer (512x512) Compute AO (512x512) AO buffer (512x512) Blur & Upsample Compute AO (1024x1024) g-buffer (1024x1024) AO buffer (1024x1024) 10
MSSAODownsampling 𝐩1𝑧≤𝐩2𝑧≤𝐩3𝑧≤𝐩4𝑧 if𝐩4𝑧−𝐩1𝑧≤𝑑𝑡h𝑟𝑒𝑠h𝑜𝑙𝑑 𝐩←(𝐩2+𝐩3)/2𝐧←(𝐧2+𝐧3)/2 else 𝐩←𝐩2𝐧←𝐧2   𝑝1   𝑝2   𝑝   𝑝3   𝑝4   11
MSSAOOverview Geometry g-buffer (1024x1024) Downsample Compute AO (256x256) AO buffer (256x256) g-buffer (256x256) Blur & Upsample g-buffer (512x512) Compute AO (512x512) AO buffer (512x512) Blur & Upsample Compute AO (1024x1024) g-buffer (1024x1024) AO buffer (1024x1024) 12
MSSAONeighborhood Sampling ,[object Object]
Cap 𝑟𝑖𝑝 to some value 𝑟𝑚𝑎𝑥 (typical value is 5)  1024x1024 16-point Poisson disk 512x512 256x256 Works well with a 3x3 Gaussian filter 13
MSSAOComputing AO Low-variance Cheap Biased 𝐪i   𝐧   𝜽𝒊   𝒅𝒊   𝐩   𝐴𝑂(𝐩)=1𝑁𝑖=1𝑁𝜌(𝐩,𝑑𝑖)(𝐧∙𝐪𝑖−𝐩)  model after the Monte-Carlo approximation of 𝐴𝑂𝐩=1𝜋Ω𝜌𝐩,𝑑𝑖cos𝜃𝑖𝑑𝜔𝑖   14
MSSAOOverview Geometry g-buffer (1024x1024) Downsample Compute AO (256x256) AO buffer (256x256) g-buffer (256x256) Blur & Upsample g-buffer (512x512) Compute AO (512x512) AO buffer (512x512) Blur & Upsample Compute AO (1024x1024) g-buffer (1024x1024) AO buffer (1024x1024) 15
MSSAOBilateral Upsampling Bilinear weights 𝑤𝑏 Depth weights 𝑤𝑧𝑝𝑖=11+𝑧𝑖−𝑧𝑡𝑧 Normal weights 𝑤𝑛𝑝𝑖=𝐧∙𝐧𝑖𝑡𝑛   916   316   316   116   𝐴𝑂𝑝=𝑖=14𝑤𝑏𝑝𝑖𝑤𝑧𝑝𝑖𝑤𝑛𝑝𝑖𝐴𝑂𝑝𝑖   16
MSSAOCombining AO Values 𝐴𝑂𝑓𝑖𝑛𝑎𝑙=1−1−max𝐴𝑂𝑖1−avg𝐴𝑂𝑖 max𝐴𝑂𝑖and avg𝐴𝑂𝑖are computed by “propagating” appropriate values across resolutions Avoid underestimating AO by ensuring𝐴𝑂𝑓𝑖𝑛𝑎𝑙≥max𝐴𝑂𝑖 And a plausible heuristic𝐴𝑂𝑓𝑖𝑛𝑎𝑙∝avg𝐴𝑂𝑖   17
MSSAOTemporal Filtering 𝑘=0.5   𝑘=0   𝐴𝑂𝑐𝑢𝑟𝑟=𝑘 𝐴𝑂𝑝𝑟𝑒𝑣+1−𝑘𝐴𝑂𝑓𝑖𝑛𝑎𝑙   𝑘=0   18
ResultsQuality Blizzard [FM08] MSSAO 19
ResultsQuality HBAO [BSD08] MSSAO 20
ResultsQuality MSSAO VAO [SKUT10] 21
ResultsGround-truth Comparison 22 MSSAO Blender
ResultsNoise/Blur MSSAO HBAO [BSD08] Blizzard [FM08] 23
ResultsMultiple AO Scales Small AO radius MSSAO Large AO radius 24
ResultsPerformance ,[object Object]
Exclusive of geometry pass
The same parameters used to produce the shown images25
MSSAOConclusions Inaccurate Local AO Over/underestimated AO Low quality Noise Blur Use more memory Poor temporal coherence on very thin geometry Not too noticeable Errors due to the use of coarse resolutions Not too noticeable unless compared with ground-truths Simple Fast General Easy to integrate Capture multiple shadow frequencies 26
ResultsAdditional Results 27
ResultsAdditional Results 28

More Related Content

What's hot

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
 
CEDEC 2018 - Towards Effortless Photorealism Through Real-Time Raytracing
CEDEC 2018 - Towards Effortless Photorealism Through Real-Time RaytracingCEDEC 2018 - Towards Effortless Photorealism Through Real-Time Raytracing
CEDEC 2018 - Towards Effortless Photorealism Through Real-Time RaytracingElectronic 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
 
Graphics Gems from CryENGINE 3 (Siggraph 2013)
Graphics Gems from CryENGINE 3 (Siggraph 2013)Graphics Gems from CryENGINE 3 (Siggraph 2013)
Graphics Gems from CryENGINE 3 (Siggraph 2013)Tiago Sousa
 
Screen Space Reflections in The Surge
Screen Space Reflections in The SurgeScreen Space Reflections in The Surge
Screen Space Reflections in The SurgeMichele Giacalone
 
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
 
Hable John Uncharted2 Hdr Lighting
Hable John Uncharted2 Hdr LightingHable John Uncharted2 Hdr Lighting
Hable John Uncharted2 Hdr Lightingozlael ozlael
 
The Rendering Technology of 'Lords of the Fallen' (Game Connection Europe 2014)
The Rendering Technology of 'Lords of the Fallen' (Game Connection Europe 2014)The Rendering Technology of 'Lords of the Fallen' (Game Connection Europe 2014)
The Rendering Technology of 'Lords of the Fallen' (Game Connection Europe 2014)Philip Hammer
 
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
 
Lighting of Killzone: Shadow Fall
Lighting of Killzone: Shadow FallLighting of Killzone: Shadow Fall
Lighting of Killzone: Shadow FallGuerrilla
 
HPG 2018 - Game Ray Tracing: State-of-the-Art and Open Problems
HPG 2018 - Game Ray Tracing: State-of-the-Art and Open ProblemsHPG 2018 - Game Ray Tracing: State-of-the-Art and Open Problems
HPG 2018 - Game Ray Tracing: State-of-the-Art and Open ProblemsElectronic Arts / DICE
 
An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...
An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...
An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...Codemotion
 
A Bit More Deferred Cry Engine3
A Bit More Deferred   Cry Engine3A Bit More Deferred   Cry Engine3
A Bit More Deferred Cry Engine3guest11b095
 
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
 
Real-Time Global Illumination Techniques
Real-Time Global Illumination TechniquesReal-Time Global Illumination Techniques
Real-Time Global Illumination TechniquesJangho Lee
 
Shadow mapping 정리
Shadow mapping 정리Shadow mapping 정리
Shadow mapping 정리changehee lee
 

What's hot (20)

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
 
CEDEC 2018 - Towards Effortless Photorealism Through Real-Time Raytracing
CEDEC 2018 - Towards Effortless Photorealism Through Real-Time RaytracingCEDEC 2018 - Towards Effortless Photorealism Through Real-Time Raytracing
CEDEC 2018 - Towards Effortless Photorealism Through Real-Time Raytracing
 
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
 
Graphics Gems from CryENGINE 3 (Siggraph 2013)
Graphics Gems from CryENGINE 3 (Siggraph 2013)Graphics Gems from CryENGINE 3 (Siggraph 2013)
Graphics Gems from CryENGINE 3 (Siggraph 2013)
 
Screen Space Reflections in The Surge
Screen Space Reflections in The SurgeScreen Space Reflections in The Surge
Screen Space Reflections in The Surge
 
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
 
Hable John Uncharted2 Hdr Lighting
Hable John Uncharted2 Hdr LightingHable John Uncharted2 Hdr Lighting
Hable John Uncharted2 Hdr Lighting
 
The Rendering Technology of 'Lords of the Fallen' (Game Connection Europe 2014)
The Rendering Technology of 'Lords of the Fallen' (Game Connection Europe 2014)The Rendering Technology of 'Lords of the Fallen' (Game Connection Europe 2014)
The Rendering Technology of 'Lords of the Fallen' (Game Connection Europe 2014)
 
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 of Killzone: Shadow Fall
Lighting of Killzone: Shadow FallLighting of Killzone: Shadow Fall
Lighting of Killzone: Shadow Fall
 
HPG 2018 - Game Ray Tracing: State-of-the-Art and Open Problems
HPG 2018 - Game Ray Tracing: State-of-the-Art and Open ProblemsHPG 2018 - Game Ray Tracing: State-of-the-Art and Open Problems
HPG 2018 - Game Ray Tracing: State-of-the-Art and Open Problems
 
An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...
An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...
An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...
 
Light prepass
Light prepassLight prepass
Light prepass
 
A Bit More Deferred Cry Engine3
A Bit More Deferred   Cry Engine3A Bit More Deferred   Cry Engine3
A Bit More Deferred Cry Engine3
 
Stochastic Screen-Space Reflections
Stochastic Screen-Space ReflectionsStochastic Screen-Space Reflections
Stochastic Screen-Space Reflections
 
Frostbite on Mobile
Frostbite on MobileFrostbite on Mobile
Frostbite on Mobile
 
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
 
Real-Time Global Illumination Techniques
Real-Time Global Illumination TechniquesReal-Time Global Illumination Techniques
Real-Time Global Illumination Techniques
 
Shadow mapping 정리
Shadow mapping 정리Shadow mapping 정리
Shadow mapping 정리
 
Shiny PC Graphics in Battlefield 3
Shiny PC Graphics in Battlefield 3Shiny PC Graphics in Battlefield 3
Shiny PC Graphics in Battlefield 3
 

Viewers also liked (20)

유니티 그래픽 최적화, 어디까지 해봤니 (Optimizing Unity Graphics) NDC15 Ver.
유니티 그래픽 최적화, 어디까지 해봤니 (Optimizing Unity Graphics) NDC15 Ver.유니티 그래픽 최적화, 어디까지 해봤니 (Optimizing Unity Graphics) NDC15 Ver.
유니티 그래픽 최적화, 어디까지 해봤니 (Optimizing Unity Graphics) NDC15 Ver.
 
ttttt
tttttttttt
ttttt
 
Protean User Guide
Protean User GuideProtean User Guide
Protean User Guide
 
qweqe
qweqeqweqe
qweqe
 
Offscreenparticle
OffscreenparticleOffscreenparticle
Offscreenparticle
 
PresentacióN1 Magda
PresentacióN1 MagdaPresentacióN1 Magda
PresentacióN1 Magda
 
3
33
3
 
Waartoe leidt Alon Ben Joseph? - FD Career Challenge 2010
Waartoe leidt Alon Ben Joseph? - FD Career Challenge 2010Waartoe leidt Alon Ben Joseph? - FD Career Challenge 2010
Waartoe leidt Alon Ben Joseph? - FD Career Challenge 2010
 
Project outline
Project outlineProject outline
Project outline
 
Titua
TituaTitua
Titua
 
Replicate & Perform
Replicate & PerformReplicate & Perform
Replicate & Perform
 
ttt
tttttt
ttt
 
Mi Slideshare
Mi SlideshareMi Slideshare
Mi Slideshare
 
Ha
HaHa
Ha
 
dfgdf
dfgdfdfgdf
dfgdf
 
Registration
RegistrationRegistration
Registration
 
Nano
NanoNano
Nano
 
Start Game 2 !!!
Start Game 2 !!!Start Game 2 !!!
Start Game 2 !!!
 
Dome Ir Catalouge
Dome Ir CatalougeDome Ir Catalouge
Dome Ir Catalouge
 
I pv6
I pv6I pv6
I pv6
 

Similar to mssao presentation

Visual Impression Localization of Autonomous Robots_#CASE2015
Visual Impression Localization of Autonomous Robots_#CASE2015Visual Impression Localization of Autonomous Robots_#CASE2015
Visual Impression Localization of Autonomous Robots_#CASE2015Soma Boubou
 
Compressed learning for time series classification
Compressed learning for time series classificationCompressed learning for time series classification
Compressed learning for time series classification學翰 施
 
June 2, 2014
June 2, 2014June 2, 2014
June 2, 2014khyps13
 
A Framework for Robust Control of Uncertainty in Self-Adaptive Software Conn...
 A Framework for Robust Control of Uncertainty in Self-Adaptive Software Conn... A Framework for Robust Control of Uncertainty in Self-Adaptive Software Conn...
A Framework for Robust Control of Uncertainty in Self-Adaptive Software Conn...Pooyan Jamshidi
 
Transformer xl
Transformer xlTransformer xl
Transformer xlSan Kim
 
Slope project daniel
Slope project danielSlope project daniel
Slope project danielDaniel Jalili
 
Restricting the Flow: Information Bottlenecks for Attribution
Restricting the Flow: Information Bottlenecks for AttributionRestricting the Flow: Information Bottlenecks for Attribution
Restricting the Flow: Information Bottlenecks for Attributiontaeseon ryu
 
[Vldb 2013] skyline operator on anti correlated distributions
[Vldb 2013] skyline operator on anti correlated distributions[Vldb 2013] skyline operator on anti correlated distributions
[Vldb 2013] skyline operator on anti correlated distributionsWooSung Choi
 
Decision Forests and discriminant analysis
Decision Forests and discriminant analysisDecision Forests and discriminant analysis
Decision Forests and discriminant analysispotaters
 
Introduction To Massive Model Visualization
Introduction To Massive Model VisualizationIntroduction To Massive Model Visualization
Introduction To Massive Model Visualizationpjcozzi
 

Similar to mssao presentation (13)

Visual Impression Localization of Autonomous Robots_#CASE2015
Visual Impression Localization of Autonomous Robots_#CASE2015Visual Impression Localization of Autonomous Robots_#CASE2015
Visual Impression Localization of Autonomous Robots_#CASE2015
 
Compressed learning for time series classification
Compressed learning for time series classificationCompressed learning for time series classification
Compressed learning for time series classification
 
June 2, 2014
June 2, 2014June 2, 2014
June 2, 2014
 
Icra 17
Icra 17Icra 17
Icra 17
 
Learning to Sample
Learning to SampleLearning to Sample
Learning to Sample
 
A Framework for Robust Control of Uncertainty in Self-Adaptive Software Conn...
 A Framework for Robust Control of Uncertainty in Self-Adaptive Software Conn... A Framework for Robust Control of Uncertainty in Self-Adaptive Software Conn...
A Framework for Robust Control of Uncertainty in Self-Adaptive Software Conn...
 
Transformer xl
Transformer xlTransformer xl
Transformer xl
 
Slope project daniel
Slope project danielSlope project daniel
Slope project daniel
 
Restricting the Flow: Information Bottlenecks for Attribution
Restricting the Flow: Information Bottlenecks for AttributionRestricting the Flow: Information Bottlenecks for Attribution
Restricting the Flow: Information Bottlenecks for Attribution
 
[Vldb 2013] skyline operator on anti correlated distributions
[Vldb 2013] skyline operator on anti correlated distributions[Vldb 2013] skyline operator on anti correlated distributions
[Vldb 2013] skyline operator on anti correlated distributions
 
Decision Forests and discriminant analysis
Decision Forests and discriminant analysisDecision Forests and discriminant analysis
Decision Forests and discriminant analysis
 
CSI ETABS & SAFE MANUAL: Slab Analysis and Design to EC2
CSI ETABS & SAFE MANUAL: Slab Analysis and Design to EC2CSI ETABS & SAFE MANUAL: Slab Analysis and Design to EC2
CSI ETABS & SAFE MANUAL: Slab Analysis and Design to EC2
 
Introduction To Massive Model Visualization
Introduction To Massive Model VisualizationIntroduction To Massive Model Visualization
Introduction To Massive Model Visualization
 

More from ozlael ozlael

Unity & VR (Unity Roadshow 2016)
Unity & VR (Unity Roadshow 2016)Unity & VR (Unity Roadshow 2016)
Unity & VR (Unity Roadshow 2016)ozlael ozlael
 
뭣이 중헌디? 성능 프로파일링도 모름서 - 유니티 성능 프로파일링 가이드 (IGC16)
뭣이 중헌디? 성능 프로파일링도 모름서 - 유니티 성능 프로파일링 가이드 (IGC16)뭣이 중헌디? 성능 프로파일링도 모름서 - 유니티 성능 프로파일링 가이드 (IGC16)
뭣이 중헌디? 성능 프로파일링도 모름서 - 유니티 성능 프로파일링 가이드 (IGC16)ozlael ozlael
 
Optimizing mobile applications - Ian Dundore, Mark Harkness
Optimizing mobile applications - Ian Dundore, Mark HarknessOptimizing mobile applications - Ian Dundore, Mark Harkness
Optimizing mobile applications - Ian Dundore, Mark Harknessozlael ozlael
 
그래픽 최적화로 가...가버렷! (부제: 배치! 배칭을 보자!) , Batch! Let's take a look at Batching! -...
그래픽 최적화로 가...가버렷! (부제: 배치! 배칭을 보자!) , Batch! Let's take a look at Batching! -...그래픽 최적화로 가...가버렷! (부제: 배치! 배칭을 보자!) , Batch! Let's take a look at Batching! -...
그래픽 최적화로 가...가버렷! (부제: 배치! 배칭을 보자!) , Batch! Let's take a look at Batching! -...ozlael ozlael
 
유니티 그래픽 최적화, 어디까지 해봤니 (Optimizing Unity Graphics) Unite Seoul Ver.
유니티 그래픽 최적화, 어디까지 해봤니 (Optimizing Unity Graphics) Unite Seoul Ver.유니티 그래픽 최적화, 어디까지 해봤니 (Optimizing Unity Graphics) Unite Seoul Ver.
유니티 그래픽 최적화, 어디까지 해봤니 (Optimizing Unity Graphics) Unite Seoul Ver.ozlael ozlael
 
Infinity Blade and beyond
Infinity Blade and beyondInfinity Blade and beyond
Infinity Blade and beyondozlael ozlael
 
스티브잡스처럼 프레젠테이션하기
스티브잡스처럼 프레젠테이션하기스티브잡스처럼 프레젠테이션하기
스티브잡스처럼 프레젠테이션하기ozlael ozlael
 
유니티의 라이팅이 안 이쁘다구요? (A to Z of Lighting)
유니티의 라이팅이 안 이쁘다구요? (A to Z of Lighting)유니티의 라이팅이 안 이쁘다구요? (A to Z of Lighting)
유니티의 라이팅이 안 이쁘다구요? (A to Z of Lighting)ozlael ozlael
 
Introduce coco2dx with cookingstar
Introduce coco2dx with cookingstarIntroduce coco2dx with cookingstar
Introduce coco2dx with cookingstarozlael ozlael
 
Deferred rendering case study
Deferred rendering case studyDeferred rendering case study
Deferred rendering case studyozlael ozlael
 
Kgc make stereo game on pc
Kgc make stereo game on pcKgc make stereo game on pc
Kgc make stereo game on pcozlael ozlael
 
Modern gpu optimize blog
Modern gpu optimize blogModern gpu optimize blog
Modern gpu optimize blogozlael ozlael
 
Bickerstaff benson making3d games on the playstation3
Bickerstaff benson making3d games on the playstation3Bickerstaff benson making3d games on the playstation3
Bickerstaff benson making3d games on the playstation3ozlael ozlael
 
Hable uncharted2(siggraph%202010%20 advanced%20realtime%20rendering%20course)
Hable uncharted2(siggraph%202010%20 advanced%20realtime%20rendering%20course)Hable uncharted2(siggraph%202010%20 advanced%20realtime%20rendering%20course)
Hable uncharted2(siggraph%202010%20 advanced%20realtime%20rendering%20course)ozlael ozlael
 
Deferred rendering in_leadwerks_engine[1]
Deferred rendering in_leadwerks_engine[1]Deferred rendering in_leadwerks_engine[1]
Deferred rendering in_leadwerks_engine[1]ozlael ozlael
 
Deferred Rendering in Killzone 2
Deferred Rendering in Killzone 2Deferred Rendering in Killzone 2
Deferred Rendering in Killzone 2ozlael ozlael
 

More from ozlael ozlael (20)

Unity & VR (Unity Roadshow 2016)
Unity & VR (Unity Roadshow 2016)Unity & VR (Unity Roadshow 2016)
Unity & VR (Unity Roadshow 2016)
 
뭣이 중헌디? 성능 프로파일링도 모름서 - 유니티 성능 프로파일링 가이드 (IGC16)
뭣이 중헌디? 성능 프로파일링도 모름서 - 유니티 성능 프로파일링 가이드 (IGC16)뭣이 중헌디? 성능 프로파일링도 모름서 - 유니티 성능 프로파일링 가이드 (IGC16)
뭣이 중헌디? 성능 프로파일링도 모름서 - 유니티 성능 프로파일링 가이드 (IGC16)
 
Optimizing mobile applications - Ian Dundore, Mark Harkness
Optimizing mobile applications - Ian Dundore, Mark HarknessOptimizing mobile applications - Ian Dundore, Mark Harkness
Optimizing mobile applications - Ian Dundore, Mark Harkness
 
그래픽 최적화로 가...가버렷! (부제: 배치! 배칭을 보자!) , Batch! Let's take a look at Batching! -...
그래픽 최적화로 가...가버렷! (부제: 배치! 배칭을 보자!) , Batch! Let's take a look at Batching! -...그래픽 최적화로 가...가버렷! (부제: 배치! 배칭을 보자!) , Batch! Let's take a look at Batching! -...
그래픽 최적화로 가...가버렷! (부제: 배치! 배칭을 보자!) , Batch! Let's take a look at Batching! -...
 
유니티 그래픽 최적화, 어디까지 해봤니 (Optimizing Unity Graphics) Unite Seoul Ver.
유니티 그래픽 최적화, 어디까지 해봤니 (Optimizing Unity Graphics) Unite Seoul Ver.유니티 그래픽 최적화, 어디까지 해봤니 (Optimizing Unity Graphics) Unite Seoul Ver.
유니티 그래픽 최적화, 어디까지 해봤니 (Optimizing Unity Graphics) Unite Seoul Ver.
 
Infinity Blade and beyond
Infinity Blade and beyondInfinity Blade and beyond
Infinity Blade and beyond
 
스티브잡스처럼 프레젠테이션하기
스티브잡스처럼 프레젠테이션하기스티브잡스처럼 프레젠테이션하기
스티브잡스처럼 프레젠테이션하기
 
유니티의 라이팅이 안 이쁘다구요? (A to Z of Lighting)
유니티의 라이팅이 안 이쁘다구요? (A to Z of Lighting)유니티의 라이팅이 안 이쁘다구요? (A to Z of Lighting)
유니티의 라이팅이 안 이쁘다구요? (A to Z of Lighting)
 
Introduce coco2dx with cookingstar
Introduce coco2dx with cookingstarIntroduce coco2dx with cookingstar
Introduce coco2dx with cookingstar
 
Deferred rendering case study
Deferred rendering case studyDeferred rendering case study
Deferred rendering case study
 
Kgc make stereo game on pc
Kgc make stereo game on pcKgc make stereo game on pc
Kgc make stereo game on pc
 
Modern gpu optimize blog
Modern gpu optimize blogModern gpu optimize blog
Modern gpu optimize blog
 
Modern gpu optimize
Modern gpu optimizeModern gpu optimize
Modern gpu optimize
 
Bickerstaff benson making3d games on the playstation3
Bickerstaff benson making3d games on the playstation3Bickerstaff benson making3d games on the playstation3
Bickerstaff benson making3d games on the playstation3
 
DOF Depth of Field
DOF Depth of FieldDOF Depth of Field
DOF Depth of Field
 
Hable uncharted2(siggraph%202010%20 advanced%20realtime%20rendering%20course)
Hable uncharted2(siggraph%202010%20 advanced%20realtime%20rendering%20course)Hable uncharted2(siggraph%202010%20 advanced%20realtime%20rendering%20course)
Hable uncharted2(siggraph%202010%20 advanced%20realtime%20rendering%20course)
 
Deferred rendering in_leadwerks_engine[1]
Deferred rendering in_leadwerks_engine[1]Deferred rendering in_leadwerks_engine[1]
Deferred rendering in_leadwerks_engine[1]
 
Deferred shading
Deferred shadingDeferred shading
Deferred shading
 
Deferred Rendering in Killzone 2
Deferred Rendering in Killzone 2Deferred Rendering in Killzone 2
Deferred Rendering in Killzone 2
 
Ssao
SsaoSsao
Ssao
 

Recently uploaded

Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxRemote DBA Services
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 

Recently uploaded (20)

Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 

mssao presentation

Editor's Notes

  1. AO is the lighting phenomenon under the direct illumination of a diffuse, uniform, spherical light source surrounding the scene, which is this yellow ring in this figure.Under such a lighting condition, less exposed areas such as the point q here will receives less light, and becomes darker than more exposed areas such as point p.Note that AO is not a real-world phenomenon, since we are assuming the light is uniform in every direction, which is rarely true in the real world.Nevertheless, it can make a scene look more realistic, that’s why it is widely adapted in, for example, CG movies.
  2. Formally, for each point p, AO is define by this integral over a hemisphere above p.Intuitively, it can be understood as the cosine-weighted fraction of the tangent hemisphere that is occluded.It is important to note that we only look for occluders inside a certain hemisphere that has a certain radius d_max.Because otherwise, AO does not work for enclosed environment such as this room, everything inside it will be totally dark.Now it is natural to evaluate AO using Monte Carlo ray casting.But do we really need to do that all the time if the only thing we want is to darken some creases or holes?
  3. It turns out there is a much more efficient approach to approximate AO that only uses information available in screen-space, namely per-pixel depths and normals.As an example, for this point p here, we can generate a few samples inside a hemisphere above it and project the samples back to the eye.If a sample’s depth is larger than the depth value store in the depth buffer, the sample is considered an occluder that block lights from p.This is efficient because sampling is much faster than ray casting.But this approach also is inaccurate, for example, as you can see, some samples can be identified as occluder, yet do not block light from reaching p in that direction.
  4. It turns out SSAO has other disadvantages as well.On the other hand, it has a number of important benefits.That’s why it’s useful in applications that care less about accuracy, but more about performance, such as games.We want to overcome some of these limitations, particularly the local AO, noise, and blur problems.
  5. Our algorithm is based on this intuition:The hemisphere above p can be partition into several sub-hemispheres, smaller ones contained in bigger ones.For each hemisphere, we compute AO caused by occluders inside that hemisphere.The final AO value is naturally the maximum of all the partial AO values computed for all the hemispheres.
  6. Anotherobservation is that occlusion caused by distant occluders is often low-frequency, and can be computed at coarser resolutions to save computation time.So we correspond each hemisphere to a resolution, the bigger the hemisphere, the coarser the resolution.Now the problem is AO computed at coarser resolutions may miss occlusion caused by nearby occluders, so the final AO is no longer the maximum value, but larger than it.We use a heuristic to compensate for this, as we modulate the maximum value by the average AO value across all resolutions.So the final AO is a function of these two values, and we must design f so that the final AO value is always larger or equal to the maximum value, and proportional to the average value.
  7. Our algorithm works like this:First we render the scene at the finest resolution to a g-buffer which contains per-pixel eye-space coordinates and normals, then downsample multiple times to get low-resolution g-buffers.Then we start from the coarsest g-buffer, compute AO for all pixels at that resolution and store the results in an AO buffer.The AO buffer is then blurred and upsampled, and the result is put through the next rendering pass, where we compute AO for the next finer resolution and combine that with the upsampled results, output another AO buffer, which is agained blurred and upsampled, and the result is used as input to the next rendering pass, where we compute AO at a finer resolution, and so on, until the we reach the final resolution.At this point, we output the highest-resolution AO buffer as the final result.
  8. Here is an example of combining AO values from different resolutions.In this example we use 5 levels of resolution. Each resolution captures a different AO frequencies, and they are all finally combined together to produce the image in the lower right.
  9. Nowlet’s get to the details.First we’re gonna look at the downsampling pass.
  10. For each low-resolution pixel p, we look for the four nearest pixels to p at the finer resolution, p_1 to p_4, and sort them according to their liner z values.Then we take the eye-space coordinates of the two “middle” pixels and average them to get the eye-space coordinates of p.This is similar to taking the median “values” of the four pixels.Now taking the median does not always make sense if the four pixels are very different in depth.In fact it creates artifacts where geometry beyond the AO radius of influence can occlude a point, since by taking the median, we are in effects changing the relative distance between surfaces.So we check if the maximum depth difference among four pixels are large enough, we choose to keep the eye-space coordinates of just one of the four pixels.Now the reason we do not do this all the time is that the median method does help reducing self-occlusion artifacts and also provides better temporal coherence.You may haved noticed that the normals are treated in the same way as the eye-space coordinates.The reason we do not normalize the sum, instead divide it by 2, which may not make sense, is that it is not necessary to normalize the normals.In fact we have found that dividing it by 2 gives better looking results and also less over-occlusion artifacts.
  11. Now let’s move on to the computing AO part.
  12. Firstly we will look at how samples are taken in screen space.First, for each pixel p at some particular resolution Res_i, we project the AO radius of influence to screen space to get a “ring” of radius r_i(p) around p. Now remember we do not want to sample in this whole ring, but usually a smaller ones, corresponding to some inner hemispheres, so we cap the screen-space sampling radius to some value, typically 5, and sample a 11x11 region in screen-space.We have found that for coarser resolutions, using the sampling scheme on the left gives best results without degrading performance.It also works well for a 3x3 Gaussian blur which is applied later.For pixels at the finest resolution, we don’t want to use the sampling scheme on the left because there is no blur pass at the final resolution, so we use a 16-point poisson disk pattern instead.Notice we do not jitter this pattern but use the same pattern for every pixel.It produces some aliasing but not too noticeable given the small kernel size.
  13. Now that we have collected, let’s say N samples, we put them through the first formula to compute the AO caused by these N samples.This formula is modeled after the Monte-Carlo approximation of the original formula for AO.You can see the correspondence highlighted by the colors.The nice thing about our formula is that it gives low-variance results, in the sense that nearby pixels have quite similar AO values.One of the reasons is that our samples are distributed in two dimensions instead of 3, we do not distribute samples in the direction dimension like some other methods.We pick samples directly from screen space, the use texture lookup to fetch their 3D-coordinates and normals, and plug the values right into the formula.it is also cheap to compute, requiring only a dot product operation for each sample.The falloff function rho is just a simple quadratic one in terms of the distance d_i.But sampling and computing AO this way is certainly biased, with regards to true AO, because neighboring pixels in screen-space often do not correspond to uniform directions in object-space.The results is that the shape and intensities of the shadows look incorrect comparing to ground truths.This is a common problem in SSAO not just our method.
  14. Next we turn to the blurring and upsamplingpass.
  15. Let me talk about the upsamplingmethod first.We use a typical bilateral upsamplinghere.For each high-resolution pixel p, we weight and blend the AO values from its 4 nearest low-resolution pixels p_1 to p_4.The weight for each pixel is a product of 3 weights, w_zis the weight due to depth differences, w_nis the weight due to normal differences, and w_bis a bilinear weight due to differences in screen-space coordinates.Using bilateral upsampling prevents occlusion to leak through large depth and normal differences and at the same time smoothly blends the AO values from the four low-res pixels, which prevents the results from getting blocky artifacts.The blur which is done before we upsample is very similar, it is a bilateral filter which uses a very small 3x3 kernels and a Gaussian weight instead of a bilinear one.
  16. Now we talk about how the AO values are combined together.At the finest resolution ,we use this formula to compute the final AO value for each pixel.The maximum and average AO values are obtained by propagating certain values up from coarser resolutions and I’m not going to get into the details here, which is pretty hairy.Notice that the formula we use here satisfies both conditions we set in the beginning.
  17. Finally, we employ a temporal filter to reduce the shimmering or flickering effects due to the use of multiple resolutions.For each pixel in screen-space, we project it back to object space, undo whatever transformation from the previous frame, and project it to last frame’s screen-space.We then fetch an AO value from last frame at that screen-space coordinates and assign a weight to it, if the pixel was occluded or outside of the screen in the last frame, the weight is 0, otherwise it is 0.5Then we linearly blend the previous-frame AO value with the AO computed in the previous slide, to obtain the AO value for the current frame.
  18. Sowe can look at some results, on the left is the method by Blizzard Entertainment which is noisy, on the right is ours.Note that the computation time is roughly the same, more on that later.
  19. Here we compare our result with Horizon-based AO by NVIDIA.Their result is quite blurry.Our image looks sharper since we do not blur at the final resolution.
  20. Here is another comparison, with a method called Volumetric AO,which is more recent than the other two.Again, our result looks nicer.
  21. Here we compare our result with ray-traced result using Blender.There are over occlusion here and there, but since accuracy is not our main concern, it is not much of a problem.
  22. Here is a closer look to show that our result is free of both noise and blur and preserves high frequency details better than other methods.
  23. Here is another advantage of our method.In existing SSAO methods, when the AO radius of influence is large, small details are lost.Our method pick up multiple AO scales in different frequencies and retain them in the final image.
  24. Here we compare the computation time among methods.Theparameters for each method are the same as those used to produced the previously shown comparison images.These three scenes are those that are shown in previous slides as well.As you can see, our method is the fastest in all three scenes, due to the fact that our sampling kernel in each resolution is small and we do not need to filter the final result, which is a relatively costly operation.
  25. In conclusion, I believe we have overcome some quality limitations of SSAO while retaining all the positives.Our methods have a few drawbacks as well.First it uses more memory than the others.Secondly, for certain kinds of small and thin geometry such as leaves or chair legs, some flickering artifacts can be seen when the camera moves, but since the objects are small anyway, this is not too noticeable.Finally, the use of multiple resolutions introduce some errors in certain cases, but again, utmost accuracy is not our aim here, so that’s not a really a problem.