Tuesday, April 3, 2012

Ambient Occlusion

Implemented ambient occlusion, based on method proposed by Iñigo Quilez. The method is originally based on another paper, "Fast Approximations for Global Illumination on Dynamic Scenes."

Here's how the method works: the ambient occlusion coefficient at each surface point is computed by taking samples of the distance field at varying distances above the point long its normal. This essentially estimates the "openness" of the region above the point. Here is a more formal mathematical description:


Here is an output of just the ambient occlusion term.


Here is ambient occlusion with diffused lighting.


Also, I want to point out that, with ambient occlusion implemented, there is an unintentional "skyline" effect where the ground plane ends. This could be because the ray does not intersect anything and therefore the normal is undefined at those points. However, it does provide a nice gradient visual effect, where before there were curved bands going across as a result of numerical errors. Here's a better picture of the "skyline".


1 comment:

  1. Is this 5 samples per fragment for AO? It would be interesting to see performance vs. speed trade-offs for varying number of samples. It would also be worth seeing how much of a performance hit we actually take with AO for more complex scenes.

    ReplyDelete