Trisha Shetty (Editor)

Schlick's approximation

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In 3D computer graphics, Schlick's approximation, named after Christophe Schlick, is a formula for approximating the contribution of the Fresnel factor in the specular reflection of light from a non-conducting interface (surface) between two media.

According to Schlick's model, the specular reflection coefficient R can be approximated by:

R ( θ ) = R 0 + ( 1 R 0 ) ( 1 cos θ ) 5 R 0 = ( n 1 n 2 n 1 + n 2 ) 2

where θ is the angle between the direction from which the incident light is coming and the normal of the interface between the two media, hence cos θ = ( N V ) . And n 1 , n 2 are the indices of refraction of the two media at the interface and R 0 is the reflection coefficient for light incoming parallel to the normal (i.e., the value of the Fresnel term when θ = 0 or minimal reflection). In computer graphics, one of the interfaces is usually air, meaning that n 1 very well can be approximated as 1.

In microfacet models it is assumed that there is always a perfect reflection, but the normal changes according to a certain distribution, resulting in a non-perfect overall reflection. When using Schlicks's approximation, the normal in the above computation is replaced by the halfway vector. Either the viewing or light direction can be used as the second vector.

References

Schlick's approximation Wikipedia