Light Flashcards
(11 cards)
What is Lambertian reflection?
Lambertian reflectors spread light equally in all directions.
What is the equation of Light intensity of Lambertian reflection?
Intensity = Kd * Id * N.L
What do the values in the light intensity equation for Lambertian reflection stand for?
Kd = reflectance coefficient
N = Surface normal
L = light vector
Id = Light intensity (3D Vector , rgb)
What is the Ambient reflection equation?
I = I_a * K_a
What do the values in the ambient reflection equation stand for?
I = Pixel intensity
I_a = ambient light intensity
K_a = ambient reflection coefficient of the surface
What is ambient reflection?
A approximation for the contribution of indirect lighting
What is diffuse refelction?
Light is reflected in all directions randomly
What is specular reflection?
Light is reflected in one focused direction like a mirror
How do you normalise a vector (dx, dy, dz)?
Find its length
l = sqrt(dx^2 + dy^2 +dz^2)
What is the surface normal equation of a sphere?
n = p - c_s
What is the diffuse term equation?
I_Pixel,c = K_d,c * I_Light,c * n · l
n = normalised surface normal
l = normalised vector light source