SlideShare a Scribd company logo
ILLUMINATION
MODEL
1
Irru Pychukar
BCA, M.Sc IT
• An illumination model, also called a
lighting model and sometimes referred to
as a shading model, is used to calculate
the intensity of light that we should see
at a given point on the surface of an
object.
• Surface rendering means a procedure for
applying a lighting model to obtain
pixel intensities for all the projected
surface positions in a scene.
2
• A surface-rendering algorithm uses the
intensity calculations from an
illumination model to determine the light
intensity for all projected pixel positions
for the various surfaces in a scene.
• Surface rendering can be performed by
applying the illumination model to every
visible surface point
3
4
• light sources are referred to as light-
emitting
sources; and reflecting surfaces, such as the
walls of a room, are termed light-
reflecting sources
• A luminous object, in general, can be both
a light source and a light reflector.
• The simplest model for a light emitter is a
point source.
Light Sources
• When light is incident on an opaque
surface, part of it is reflected and part is
absorbed.
• The amount of incident light reflected by
a surface depends on the type of
material. Shiny materials reflect more
of the incident light, and dull surfaces
absorb more of the incident light.
• for an illuminated transparent surface,
some of the incident light will be
reflected and some will be transmitted
through the material 5
• Surfaces that are rough, or grainy, tend
to scatter the reflected light in all
directions.
This scattered light is called diffuse
reflection.
• In addition to diffuse reflection, light
sources create highlights, or bright spots,
called specular reflection.
• This highlighting effect is more
pronounced on shiny surfaces than o6n dull
Ambient Light
7
• In our basic illumination model, we can set a
general level of brightness for a scene. This is a
simple way to model the combination of light
reflections from various surfaces to produce a
uniform illumination called the ambient light,
or background light.
• Ambient light has no spatial or directional
characteristics. The amount of ambient light
incident on each object is a constant for all
surfaces and over all directions.
DIFFUSE REFLECTION
8
• Diffuse reflections are constant over each
surface in a scene
• The fractional amount of the incident light
that is diffusely reflected can be set for
each surface with parameter kd, the
diffuse-reflection coefficient, or diffuse
reflectivity.
• Parameter kdis assigned a constant
value in the interval 0 to 1.
• we want a highly reflective surface, we
set the value of kdnear 1. This produces
a bright surface with the intensity of the
reflected light near that of the incident
light.
• To simulate a surface that absorbs most
of the incident light, we set the
reflectivity to a value near 0. 9
• If a surface is exposed only to ambient
light, we can express the intensity of the
diffuse reflection at any point on the
surface as
10
I ambdiff= k d I a
• we assume that the diffuse reflections
from the surface are scattered with equal
intensity in all directions, independent of
the viewing directions.
• Such surfaces are sometimes referred to
as ideal diffuse reflectors. They are also
called Lambertian reflectors, since
radiated light energy from any point on
the surface is governed by Lambert’s
cosine law.
11
• If we denote the angle of incidence
between the incoming light direction and
the surface normal as ϴ, then the
projected area of a
surface patch perpendicular to the light
direction is proportional to cos ϴ .
12
Thus, the amount of illumination (or the
"number of incident light rays" cutting across
the projected surface patch) depends on cos ϴ.
• If the incoming light from the source is
perpendicular to the surface at a particular
point, that point is fully illuminated.
• As the angle of illumination moves away from
the surface normal, the brightness of the point
drops off. 13
• If Il, is the intensity of the point light source,
then the diffuse reflection equation for a point
on the surface can be written as
I l ,diff= k d I lcos ϴ
• A surface is illuminated by a point source
only if the angle of incidence is in the
range 0° to 90 ° (cos 0 is in the interval
from 0 to 1).
• When cos ϴ is negative, the light source
is "behind" the surface.
14
15
• If N is the unit normal vector to a surface
and L is the unit direction vector to the
point light source from a position on the
surface, then
cos ϴ = N . L
and the diffuse reflection equation for
single point-source illumination is
16
I l ,diff= k d I lN. L
• We can combine the ambient and point
source intensity calculations to obtain an
expression for the total diffuse
reflection.
• In addition, many graphics packages
introduce an ambient-reflection
coefficient kato modify the ambient
light intensity I, for each surface. This
simply provides us with an additional
parameter to adjust the light conditions
in a scene. 17
• Using parameter kawe can write the total
diffuse reflection equation as
18
I l,diff= k a I a + k dI l( N. L)
• where both k aand k ddepend on surface
material properties and are assigned
values
in the range from 0 to 1
SPECULAR REFLECTION AND THE
PHONG MODEL
19
• we see a highlight, or bright spot, at
certain viewing directions. This
phenomenon, called specular reflection,
is the result of total, or near total
reflection of the incident light in a
concentrated region around the specular
reflection angle.
• The specular-reflection angle equals the
angle of the incident light.
20
• In this figure, we use R to represent the unit
vector in the direction of ideal specular
reflection; L to represent the unit vector
directed toward the point light source; and V as
the unit vector pointing to the viewer from the
surface position.
• Angle ϴ is the viewing angle relative to the
specular-reflection direction R.
• For an ideal reflector (perfect mirror), incident
light is reflected only in the specular-reflection
direction. In this case, we would only see
reflected light when vectors V and R coincide
(ϴ = 0).
21
• Phong model, sets the intensity of specular
reflection proportional to cos nsϴ.
• Angle ϴ can be assigned values in the range 0
to 90, so that cos ϴ varies from 0 to 1.
• The value assigned to specular-reflection
parameter nsis determined by the type of
surface that we want to display.
• A very shiny surface is modeled with a large
value for ns(say, 100 or more), and smaller
values (down to 1) are used for duller
surfaces.
• For a perfect reflector, nsis infinite.
22
• We can approximately model
monochromatic
specular intensity variations using a specular-
reflection coefficient, W(ϴ) for each surface.
• In general, W(ϴ) tends to increase as the
angle of incidence increases.
• Using the spectral-reflection function W(ϴ),
lar-
Reflection we can write the Phong specu on
model as
23
• Since V and R are unit vectors in the
viewing and specular-reflection
directions,
we can calculate the value of cos ϴ with
V . R
• Assuming the specular-reflection
coefficient is a constant, we can
determine the intensity of
the specular reflection at a surface point
with the calculation
I spec= ksIl( V.R ) ns
24
• simplified Phong model is obtained by
using the halfway vector H between L and
V to calculate the range of specular
reflections.
• If we replace V.R in the Phong model with
the dot product N . H, this simply
replaces the empirical cos ϴ calculation
with the empirical cos α calculation
25
26
Combined Diffuse And Specular Reflections
With Multiple Light Sources
27
• If we place more than one point source in
a scene, we obtain the light reflection
at any surface point by summing the
contributions from the individual sources:
28
Warn Model
29
• The Warn model provides a method for
simulating studio lighting effects by
controlling light intensity in different
directions.
• Light sources are modeled as points on a
reflecting surface, using the Phong model
for the surface points.
• Then the intensity in different directions
is controlled by selecting values for the
Phong exponent
• In addition, light controls and
spotlighting, used by studio
photographers can be simulated in the
Warn model.
• Flaps are used to control the amount of
light emitted by a source In various
directions
30
Intensity Attenuation
31
• As radiant energy from a point light
source travels through space, its
amplitude is attenuated by the factor
l/d2, where d is the distance that the
light has travelled.
• This means that a surface close to the
light source (small d) receives a higher
incident
intensity from the source than a distant
surface (large d).
A user can then fiddle with the coefficients ao, a1,
and a2 , to obtain a variety of lighting effects for
a scene. The value of the constant term ao can be
adjusted to
prevent f(d) from becoming too large when d is
very small.
• a general inverse quadratic attenuation
function can be set up as
32
33
Colour Considerations
34
• Most graphics displays of realistic scenes
are in colour. But the illumination model
discussed so far considers only
monochromatic lighting effects.
• To incorporate colour, we need to write
the intensity equation as a function of
the colour
properties of the light sources and object
surfaces.
• One way to set surface colors is by specifing
the reflectivity coefficients as three-element
vectors.
• The diffuse reflection coefficient vector, for
example, would then have RGB components
( kdR, kdG, kdB)
• If we want an object to have a blue surface,
we select a nonzero value in the range from
0 to 1 for the blue reflectivity component, kdB
, while the red and green reflectivity
components are set to zero ( kdR=0, kdG=0)
35
• Any nonzero red or green components in
the incident light are absorbed, and only
the blue component is reflected. The
intensity calculation for this example
reduces to the single expression
36
• Surfaces typically are illuminated with white light
sources, and in general we can set surface color so
that the reflected light has nonzero values for all
three RGB components.
• Calculated intensity levels for each color
component can be used to adjust the
corresponding electron gun in an RGB monitor.
• In his original specular-reflection model, Phong set
parameter ks to a constant value independent of
the surface color. This produces specular
reflections that are the same color as the incident
light (usually white),
37
Transparency
38
• A transparent surface, in general,
produces both reflected and transmitted
light.
• The relative contribution of the
transmitted light depends on the degree
of transparency of the surface and
whether any light sources or illuminated
surfaces are behind the transparent
surface
• We can combine the transmitted intensity
Itransthrough a surface from a background
object with the reflected intensity Irefl
from the transparent surface using a
transparency coefficient kt.
• We assign parameter kt, a value between
0 and 1 to specify how much of the
background light is to be transmitted.
• Total surface intensity is then calculated
as
39
40
Shadows
41
• By applying a hidden-surface method with a
light source at the view position, we can
determine which surface sections cannot be
"seen" from the light source.
• These are the shadow areas.
• Once we have determined the shadow
areas for all light sources, the shadows
could be treated as surface patterns and
stored in pattern arrays
• Surfaces that are visible from the view
position are shaded according to the
lighting
model, which can be combined with
texture patterns.
• We can display shadow areas with
ambient-light intensity only, or we can
combine the ambient light with specified
surface textures.
42
43

More Related Content

What's hot

Color models
Color modelsColor models
Color models
Haitham Ahmed
 
fractals
fractalsfractals
Visible surface detection in computer graphic
Visible surface detection in computer graphicVisible surface detection in computer graphic
Visible surface detection in computer graphicanku2266
 
4. THREE DIMENSIONAL DISPLAY METHODS
4.	THREE DIMENSIONAL DISPLAY METHODS4.	THREE DIMENSIONAL DISPLAY METHODS
4. THREE DIMENSIONAL DISPLAY METHODS
SanthiNivas
 
Character generation techniques
Character generation techniquesCharacter generation techniques
Character generation techniques
Mani Kanth
 
3D transformation in computer graphics
3D transformation in computer graphics3D transformation in computer graphics
3D transformation in computer graphics
SHIVANI SONI
 
Color image processing Presentation
Color image processing PresentationColor image processing Presentation
Color image processing Presentation
Revanth Chimmani
 
HSV color model
HSV color modelHSV color model
HSV color model
Pooja Jaiswal
 
Log Transformation in Image Processing with Example
Log Transformation in Image Processing with ExampleLog Transformation in Image Processing with Example
Log Transformation in Image Processing with Example
Mustak Ahmmed
 
Computer graphics basic transformation
Computer graphics basic transformationComputer graphics basic transformation
Computer graphics basic transformation
Selvakumar Gna
 
Hidden surfaces
Hidden surfacesHidden surfaces
Hidden surfacesMohd Arif
 
Curves and surfaces
Curves and surfacesCurves and surfaces
Curves and surfaces
Mohammed Mahmoud
 
3 d display methods
3 d display methods3 d display methods
3 d display methods
Shami Al Rahad
 
HSL & HSV colour models
HSL & HSV colour modelsHSL & HSV colour models
HSL & HSV colour models
Vishnu RC Vijayan
 
Fundamentals and image compression models
Fundamentals and image compression modelsFundamentals and image compression models
Fundamentals and image compression models
lavanya marichamy
 
Raster scan system & random scan system
Raster scan system & random scan systemRaster scan system & random scan system
Raster scan system & random scan system
shalinikarunakaran1
 
Graphics software and standards
Graphics software and standardsGraphics software and standards
Graphics software and standards
Mani Kanth
 
Spline representations
Spline representationsSpline representations
Spline representations
Nikhil krishnan
 
Color fundamentals and color models - Digital Image Processing
Color fundamentals and color models - Digital Image ProcessingColor fundamentals and color models - Digital Image Processing
Color fundamentals and color models - Digital Image Processing
Amna
 
Window to viewport transformation
Window to viewport transformationWindow to viewport transformation
Window to viewport transformation
Ankit Garg
 

What's hot (20)

Color models
Color modelsColor models
Color models
 
fractals
fractalsfractals
fractals
 
Visible surface detection in computer graphic
Visible surface detection in computer graphicVisible surface detection in computer graphic
Visible surface detection in computer graphic
 
4. THREE DIMENSIONAL DISPLAY METHODS
4.	THREE DIMENSIONAL DISPLAY METHODS4.	THREE DIMENSIONAL DISPLAY METHODS
4. THREE DIMENSIONAL DISPLAY METHODS
 
Character generation techniques
Character generation techniquesCharacter generation techniques
Character generation techniques
 
3D transformation in computer graphics
3D transformation in computer graphics3D transformation in computer graphics
3D transformation in computer graphics
 
Color image processing Presentation
Color image processing PresentationColor image processing Presentation
Color image processing Presentation
 
HSV color model
HSV color modelHSV color model
HSV color model
 
Log Transformation in Image Processing with Example
Log Transformation in Image Processing with ExampleLog Transformation in Image Processing with Example
Log Transformation in Image Processing with Example
 
Computer graphics basic transformation
Computer graphics basic transformationComputer graphics basic transformation
Computer graphics basic transformation
 
Hidden surfaces
Hidden surfacesHidden surfaces
Hidden surfaces
 
Curves and surfaces
Curves and surfacesCurves and surfaces
Curves and surfaces
 
3 d display methods
3 d display methods3 d display methods
3 d display methods
 
HSL & HSV colour models
HSL & HSV colour modelsHSL & HSV colour models
HSL & HSV colour models
 
Fundamentals and image compression models
Fundamentals and image compression modelsFundamentals and image compression models
Fundamentals and image compression models
 
Raster scan system & random scan system
Raster scan system & random scan systemRaster scan system & random scan system
Raster scan system & random scan system
 
Graphics software and standards
Graphics software and standardsGraphics software and standards
Graphics software and standards
 
Spline representations
Spline representationsSpline representations
Spline representations
 
Color fundamentals and color models - Digital Image Processing
Color fundamentals and color models - Digital Image ProcessingColor fundamentals and color models - Digital Image Processing
Color fundamentals and color models - Digital Image Processing
 
Window to viewport transformation
Window to viewport transformationWindow to viewport transformation
Window to viewport transformation
 

Similar to illumination model in Computer Graphics by irru pychukar

graphics notes
graphics notesgraphics notes
graphics notes
Sonia Pahuja
 
illuminationmodelsshading-200501081735 (1).pdf
illuminationmodelsshading-200501081735 (1).pdfilluminationmodelsshading-200501081735 (1).pdf
illuminationmodelsshading-200501081735 (1).pdf
SayantanMajhi2
 
UNIT-6-Illumination-Models-and-Surface-Rendering-Methods.pdf
UNIT-6-Illumination-Models-and-Surface-Rendering-Methods.pdfUNIT-6-Illumination-Models-and-Surface-Rendering-Methods.pdf
UNIT-6-Illumination-Models-and-Surface-Rendering-Methods.pdf
SayantanMajhi2
 
Shading methods
Shading methodsShading methods
Shading methods
Rakesh Pandey
 
Phong Shading over any Polygonal Surface
Phong Shading over any Polygonal Surface Phong Shading over any Polygonal Surface
Phong Shading over any Polygonal Surface
Bhuvnesh Pratap
 
reflectionoflight-100829070425-phpapp02 (1).pdf
reflectionoflight-100829070425-phpapp02 (1).pdfreflectionoflight-100829070425-phpapp02 (1).pdf
reflectionoflight-100829070425-phpapp02 (1).pdf
GretchenJavier1
 
RAY OPTICS.pdf
RAY OPTICS.pdfRAY OPTICS.pdf
RAY OPTICS.pdf
KTHEJAREDDY1
 
Lighting terminlologyand their units
Lighting terminlologyand their unitsLighting terminlologyand their units
Lighting terminlologyand their units
Safdar Ali
 
reflectionoflight-100829070425-phpapp02.pptx
reflectionoflight-100829070425-phpapp02.pptxreflectionoflight-100829070425-phpapp02.pptx
reflectionoflight-100829070425-phpapp02.pptx
SapnaPatiye
 
CS 354 Lighting
CS 354 LightingCS 354 Lighting
CS 354 Lighting
Mark Kilgard
 
3340903-UEE- UNIT-1.pptx
3340903-UEE- UNIT-1.pptx3340903-UEE- UNIT-1.pptx
3340903-UEE- UNIT-1.pptx
JigsPatel37
 
LIGHT_final.pptx
LIGHT_final.pptxLIGHT_final.pptx
LIGHT_final.pptx
yourmo
 
3.2 form 4 light
3.2 form 4 light3.2 form 4 light
3.2 form 4 light
chris lembalemba
 
Lecture 1. Lighting Design.pptx
Lecture 1. Lighting Design.pptxLecture 1. Lighting Design.pptx
Lecture 1. Lighting Design.pptx
NisthaPathak2
 
Reflection and refraction at home & curved surfaces
Reflection and refraction at home & curved surfacesReflection and refraction at home & curved surfaces
Reflection and refraction at home & curved surfacesMohammad Arman Bin Aziz
 
Computer Vision: Shape from Specularities and Motion
Computer Vision: Shape from Specularities and MotionComputer Vision: Shape from Specularities and Motion
Computer Vision: Shape from Specularities and MotionDamian T. Gordon
 
Laws of reflection
Laws of reflectionLaws of reflection
Laws of reflection
LABISHETTY CHARAN
 
Unit 2 ppt.pdf
Unit 2 ppt.pdfUnit 2 ppt.pdf
Unit 2 ppt.pdf
ShubhamVerma961456
 
Shading
ShadingShading
Graphics Lecture 7
Graphics Lecture 7Graphics Lecture 7
Graphics Lecture 7
Saiful Islam
 

Similar to illumination model in Computer Graphics by irru pychukar (20)

graphics notes
graphics notesgraphics notes
graphics notes
 
illuminationmodelsshading-200501081735 (1).pdf
illuminationmodelsshading-200501081735 (1).pdfilluminationmodelsshading-200501081735 (1).pdf
illuminationmodelsshading-200501081735 (1).pdf
 
UNIT-6-Illumination-Models-and-Surface-Rendering-Methods.pdf
UNIT-6-Illumination-Models-and-Surface-Rendering-Methods.pdfUNIT-6-Illumination-Models-and-Surface-Rendering-Methods.pdf
UNIT-6-Illumination-Models-and-Surface-Rendering-Methods.pdf
 
Shading methods
Shading methodsShading methods
Shading methods
 
Phong Shading over any Polygonal Surface
Phong Shading over any Polygonal Surface Phong Shading over any Polygonal Surface
Phong Shading over any Polygonal Surface
 
reflectionoflight-100829070425-phpapp02 (1).pdf
reflectionoflight-100829070425-phpapp02 (1).pdfreflectionoflight-100829070425-phpapp02 (1).pdf
reflectionoflight-100829070425-phpapp02 (1).pdf
 
RAY OPTICS.pdf
RAY OPTICS.pdfRAY OPTICS.pdf
RAY OPTICS.pdf
 
Lighting terminlologyand their units
Lighting terminlologyand their unitsLighting terminlologyand their units
Lighting terminlologyand their units
 
reflectionoflight-100829070425-phpapp02.pptx
reflectionoflight-100829070425-phpapp02.pptxreflectionoflight-100829070425-phpapp02.pptx
reflectionoflight-100829070425-phpapp02.pptx
 
CS 354 Lighting
CS 354 LightingCS 354 Lighting
CS 354 Lighting
 
3340903-UEE- UNIT-1.pptx
3340903-UEE- UNIT-1.pptx3340903-UEE- UNIT-1.pptx
3340903-UEE- UNIT-1.pptx
 
LIGHT_final.pptx
LIGHT_final.pptxLIGHT_final.pptx
LIGHT_final.pptx
 
3.2 form 4 light
3.2 form 4 light3.2 form 4 light
3.2 form 4 light
 
Lecture 1. Lighting Design.pptx
Lecture 1. Lighting Design.pptxLecture 1. Lighting Design.pptx
Lecture 1. Lighting Design.pptx
 
Reflection and refraction at home & curved surfaces
Reflection and refraction at home & curved surfacesReflection and refraction at home & curved surfaces
Reflection and refraction at home & curved surfaces
 
Computer Vision: Shape from Specularities and Motion
Computer Vision: Shape from Specularities and MotionComputer Vision: Shape from Specularities and Motion
Computer Vision: Shape from Specularities and Motion
 
Laws of reflection
Laws of reflectionLaws of reflection
Laws of reflection
 
Unit 2 ppt.pdf
Unit 2 ppt.pdfUnit 2 ppt.pdf
Unit 2 ppt.pdf
 
Shading
ShadingShading
Shading
 
Graphics Lecture 7
Graphics Lecture 7Graphics Lecture 7
Graphics Lecture 7
 

Recently uploaded

Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
seandesed
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Teleport Manpower Consultant
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
AJAYKUMARPUND1
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
fxintegritypublishin
 
Automobile Management System Project Report.pdf
Automobile Management System Project Report.pdfAutomobile Management System Project Report.pdf
Automobile Management System Project Report.pdf
Kamal Acharya
 
addressing modes in computer architecture
addressing modes  in computer architectureaddressing modes  in computer architecture
addressing modes in computer architecture
ShahidSultan24
 
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptxCFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
R&R Consult
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
AhmedHussein950959
 
Democratizing Fuzzing at Scale by Abhishek Arya
Democratizing Fuzzing at Scale by Abhishek AryaDemocratizing Fuzzing at Scale by Abhishek Arya
Democratizing Fuzzing at Scale by Abhishek Arya
abh.arya
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
FluxPrime1
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Dr.Costas Sachpazis
 
Halogenation process of chemical process industries
Halogenation process of chemical process industriesHalogenation process of chemical process industries
Halogenation process of chemical process industries
MuhammadTufail242431
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
bakpo1
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdfCOLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
Kamal Acharya
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
ankuprajapati0525
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
Vaccine management system project report documentation..pdf
Vaccine management system project report documentation..pdfVaccine management system project report documentation..pdf
Vaccine management system project report documentation..pdf
Kamal Acharya
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
Jayaprasanna4
 

Recently uploaded (20)

Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
 
Automobile Management System Project Report.pdf
Automobile Management System Project Report.pdfAutomobile Management System Project Report.pdf
Automobile Management System Project Report.pdf
 
addressing modes in computer architecture
addressing modes  in computer architectureaddressing modes  in computer architecture
addressing modes in computer architecture
 
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptxCFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
 
Democratizing Fuzzing at Scale by Abhishek Arya
Democratizing Fuzzing at Scale by Abhishek AryaDemocratizing Fuzzing at Scale by Abhishek Arya
Democratizing Fuzzing at Scale by Abhishek Arya
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
 
Halogenation process of chemical process industries
Halogenation process of chemical process industriesHalogenation process of chemical process industries
Halogenation process of chemical process industries
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdfCOLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
Vaccine management system project report documentation..pdf
Vaccine management system project report documentation..pdfVaccine management system project report documentation..pdf
Vaccine management system project report documentation..pdf
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
 

illumination model in Computer Graphics by irru pychukar

  • 2. • An illumination model, also called a lighting model and sometimes referred to as a shading model, is used to calculate the intensity of light that we should see at a given point on the surface of an object. • Surface rendering means a procedure for applying a lighting model to obtain pixel intensities for all the projected surface positions in a scene. 2
  • 3. • A surface-rendering algorithm uses the intensity calculations from an illumination model to determine the light intensity for all projected pixel positions for the various surfaces in a scene. • Surface rendering can be performed by applying the illumination model to every visible surface point 3
  • 4. 4 • light sources are referred to as light- emitting sources; and reflecting surfaces, such as the walls of a room, are termed light- reflecting sources • A luminous object, in general, can be both a light source and a light reflector. • The simplest model for a light emitter is a point source. Light Sources
  • 5. • When light is incident on an opaque surface, part of it is reflected and part is absorbed. • The amount of incident light reflected by a surface depends on the type of material. Shiny materials reflect more of the incident light, and dull surfaces absorb more of the incident light. • for an illuminated transparent surface, some of the incident light will be reflected and some will be transmitted through the material 5
  • 6. • Surfaces that are rough, or grainy, tend to scatter the reflected light in all directions. This scattered light is called diffuse reflection. • In addition to diffuse reflection, light sources create highlights, or bright spots, called specular reflection. • This highlighting effect is more pronounced on shiny surfaces than o6n dull
  • 7. Ambient Light 7 • In our basic illumination model, we can set a general level of brightness for a scene. This is a simple way to model the combination of light reflections from various surfaces to produce a uniform illumination called the ambient light, or background light. • Ambient light has no spatial or directional characteristics. The amount of ambient light incident on each object is a constant for all surfaces and over all directions.
  • 8. DIFFUSE REFLECTION 8 • Diffuse reflections are constant over each surface in a scene • The fractional amount of the incident light that is diffusely reflected can be set for each surface with parameter kd, the diffuse-reflection coefficient, or diffuse reflectivity.
  • 9. • Parameter kdis assigned a constant value in the interval 0 to 1. • we want a highly reflective surface, we set the value of kdnear 1. This produces a bright surface with the intensity of the reflected light near that of the incident light. • To simulate a surface that absorbs most of the incident light, we set the reflectivity to a value near 0. 9
  • 10. • If a surface is exposed only to ambient light, we can express the intensity of the diffuse reflection at any point on the surface as 10 I ambdiff= k d I a
  • 11. • we assume that the diffuse reflections from the surface are scattered with equal intensity in all directions, independent of the viewing directions. • Such surfaces are sometimes referred to as ideal diffuse reflectors. They are also called Lambertian reflectors, since radiated light energy from any point on the surface is governed by Lambert’s cosine law. 11
  • 12. • If we denote the angle of incidence between the incoming light direction and the surface normal as ϴ, then the projected area of a surface patch perpendicular to the light direction is proportional to cos ϴ . 12
  • 13. Thus, the amount of illumination (or the "number of incident light rays" cutting across the projected surface patch) depends on cos ϴ. • If the incoming light from the source is perpendicular to the surface at a particular point, that point is fully illuminated. • As the angle of illumination moves away from the surface normal, the brightness of the point drops off. 13
  • 14. • If Il, is the intensity of the point light source, then the diffuse reflection equation for a point on the surface can be written as I l ,diff= k d I lcos ϴ • A surface is illuminated by a point source only if the angle of incidence is in the range 0° to 90 ° (cos 0 is in the interval from 0 to 1). • When cos ϴ is negative, the light source is "behind" the surface. 14
  • 15. 15
  • 16. • If N is the unit normal vector to a surface and L is the unit direction vector to the point light source from a position on the surface, then cos ϴ = N . L and the diffuse reflection equation for single point-source illumination is 16 I l ,diff= k d I lN. L
  • 17. • We can combine the ambient and point source intensity calculations to obtain an expression for the total diffuse reflection. • In addition, many graphics packages introduce an ambient-reflection coefficient kato modify the ambient light intensity I, for each surface. This simply provides us with an additional parameter to adjust the light conditions in a scene. 17
  • 18. • Using parameter kawe can write the total diffuse reflection equation as 18 I l,diff= k a I a + k dI l( N. L) • where both k aand k ddepend on surface material properties and are assigned values in the range from 0 to 1
  • 19. SPECULAR REFLECTION AND THE PHONG MODEL 19 • we see a highlight, or bright spot, at certain viewing directions. This phenomenon, called specular reflection, is the result of total, or near total reflection of the incident light in a concentrated region around the specular reflection angle. • The specular-reflection angle equals the angle of the incident light.
  • 20. 20
  • 21. • In this figure, we use R to represent the unit vector in the direction of ideal specular reflection; L to represent the unit vector directed toward the point light source; and V as the unit vector pointing to the viewer from the surface position. • Angle ϴ is the viewing angle relative to the specular-reflection direction R. • For an ideal reflector (perfect mirror), incident light is reflected only in the specular-reflection direction. In this case, we would only see reflected light when vectors V and R coincide (ϴ = 0). 21
  • 22. • Phong model, sets the intensity of specular reflection proportional to cos nsϴ. • Angle ϴ can be assigned values in the range 0 to 90, so that cos ϴ varies from 0 to 1. • The value assigned to specular-reflection parameter nsis determined by the type of surface that we want to display. • A very shiny surface is modeled with a large value for ns(say, 100 or more), and smaller values (down to 1) are used for duller surfaces. • For a perfect reflector, nsis infinite. 22
  • 23. • We can approximately model monochromatic specular intensity variations using a specular- reflection coefficient, W(ϴ) for each surface. • In general, W(ϴ) tends to increase as the angle of incidence increases. • Using the spectral-reflection function W(ϴ), lar- Reflection we can write the Phong specu on model as 23
  • 24. • Since V and R are unit vectors in the viewing and specular-reflection directions, we can calculate the value of cos ϴ with V . R • Assuming the specular-reflection coefficient is a constant, we can determine the intensity of the specular reflection at a surface point with the calculation I spec= ksIl( V.R ) ns 24
  • 25. • simplified Phong model is obtained by using the halfway vector H between L and V to calculate the range of specular reflections. • If we replace V.R in the Phong model with the dot product N . H, this simply replaces the empirical cos ϴ calculation with the empirical cos α calculation 25
  • 26. 26
  • 27. Combined Diffuse And Specular Reflections With Multiple Light Sources 27
  • 28. • If we place more than one point source in a scene, we obtain the light reflection at any surface point by summing the contributions from the individual sources: 28
  • 29. Warn Model 29 • The Warn model provides a method for simulating studio lighting effects by controlling light intensity in different directions. • Light sources are modeled as points on a reflecting surface, using the Phong model for the surface points. • Then the intensity in different directions is controlled by selecting values for the Phong exponent
  • 30. • In addition, light controls and spotlighting, used by studio photographers can be simulated in the Warn model. • Flaps are used to control the amount of light emitted by a source In various directions 30
  • 31. Intensity Attenuation 31 • As radiant energy from a point light source travels through space, its amplitude is attenuated by the factor l/d2, where d is the distance that the light has travelled. • This means that a surface close to the light source (small d) receives a higher incident intensity from the source than a distant surface (large d).
  • 32. A user can then fiddle with the coefficients ao, a1, and a2 , to obtain a variety of lighting effects for a scene. The value of the constant term ao can be adjusted to prevent f(d) from becoming too large when d is very small. • a general inverse quadratic attenuation function can be set up as 32
  • 33. 33
  • 34. Colour Considerations 34 • Most graphics displays of realistic scenes are in colour. But the illumination model discussed so far considers only monochromatic lighting effects. • To incorporate colour, we need to write the intensity equation as a function of the colour properties of the light sources and object surfaces.
  • 35. • One way to set surface colors is by specifing the reflectivity coefficients as three-element vectors. • The diffuse reflection coefficient vector, for example, would then have RGB components ( kdR, kdG, kdB) • If we want an object to have a blue surface, we select a nonzero value in the range from 0 to 1 for the blue reflectivity component, kdB , while the red and green reflectivity components are set to zero ( kdR=0, kdG=0) 35
  • 36. • Any nonzero red or green components in the incident light are absorbed, and only the blue component is reflected. The intensity calculation for this example reduces to the single expression 36
  • 37. • Surfaces typically are illuminated with white light sources, and in general we can set surface color so that the reflected light has nonzero values for all three RGB components. • Calculated intensity levels for each color component can be used to adjust the corresponding electron gun in an RGB monitor. • In his original specular-reflection model, Phong set parameter ks to a constant value independent of the surface color. This produces specular reflections that are the same color as the incident light (usually white), 37
  • 38. Transparency 38 • A transparent surface, in general, produces both reflected and transmitted light. • The relative contribution of the transmitted light depends on the degree of transparency of the surface and whether any light sources or illuminated surfaces are behind the transparent surface
  • 39. • We can combine the transmitted intensity Itransthrough a surface from a background object with the reflected intensity Irefl from the transparent surface using a transparency coefficient kt. • We assign parameter kt, a value between 0 and 1 to specify how much of the background light is to be transmitted. • Total surface intensity is then calculated as 39
  • 40. 40
  • 41. Shadows 41 • By applying a hidden-surface method with a light source at the view position, we can determine which surface sections cannot be "seen" from the light source. • These are the shadow areas. • Once we have determined the shadow areas for all light sources, the shadows could be treated as surface patterns and stored in pattern arrays
  • 42. • Surfaces that are visible from the view position are shaded according to the lighting model, which can be combined with texture patterns. • We can display shadow areas with ambient-light intensity only, or we can combine the ambient light with specified surface textures. 42
  • 43. 43