Shading. For Further Reading Angel 7 th Ed: ­Chapter 6 2.

Slides:



Advertisements
Similar presentations
Computer Graphics - Shading -
Advertisements

Computer Graphics Shading Lecture 13 John Shearer
Computer Graphics I, Fall 2010 Shading II.
1 Graphics CSCI 343, Fall 2013 Lecture 18 Lighting and Shading.
CS 480/680 Computer Graphics Shading 2 Dr. Frederick C Harris, Jr.
CSPC 352: Computer Graphics
Virtual Realism LIGHTING AND SHADING. Lighting & Shading Approximate physical reality Ray tracing: Follow light rays through a scene Accurate, but expensive.
Based on slides created by Edward Angel
1 Angel: Interactive Computer Graphics 5E © Addison-Wesley 2009 Shading I.
University of New Mexico
Computer Graphics - Class 10
Shading in OpenGL CS4395: Computer Graphics 1 Mohan Sridharan Based on slides created by Edward Angel.
Shading II CS4395: Computer Graphics 1 Mohan Sridharan Based on slides created by Edward Angel.
Lighting and Shading Wen-Chieh (Steve) Lin
Shading in OpenGL Ed Angel Professor of Computer Science, Electrical and Computer Engineering, and Media Arts University of New Mexico.
Objectives Learn to shade objects so their images appear three- dimensional Learn to shade objects so their images appear three- dimensional Introduce.
1 Angel: Interactive Computer Graphics 4E © Addison-Wesley 2006 Shading II Ed Angel Professor of Computer Science, Electrical and Computer Engineering,
CS5500 Computer Graphics March 26, Shading Reference: Ed Angel’s book.
1 Angel: Interactive Computer Graphics 4E © Addison-Wesley 2005 Shading I Ed Angel Professor of Computer Science, Electrical and Computer Engineering,
Shading Surface can either (both) 1.Emit light. E.g. light bult 2.Reflect light. E.g. Mirror.
CS 480/680 Computer Graphics Shading I Dr. Frederick C Harris, Jr.
Illumination.
Computer Graphics Lighting.
1 Introduction to Computer Graphics with WebGL Ed Angel Professor Emeritus of Computer Science Founding Director, Arts, Research, Technology and Science.
1 Shading I Shandong University Software College Instructor: Zhou Yuanfeng
1 Angel: Interactive Computer Graphics 4E © Addison-Wesley 2005 Chapter 6: Shading Ed Angel Professor of Computer Science, Electrical and Computer Engineering,
Shading (introduction to rendering). Rendering  We know how to specify the geometry but how is the color calculated.
Illumination & Reflectance Dr. Amy Zhang. Outline 2  Illumination and Reflectance  The Phong Reflectance Model  Shading in OpenGL.
Shading in OpenGL.
1 Introduction to Computer Graphics with WebGL Ed Angel Professor Emeritus of Computer Science Founding Director, Arts, Research, Technology and Science.
1 Chapter 6 Shading. 2 Objectives Learn to shade objects so their images appear three-dimensional Introduce the types of light-material interactions Build.
19/17/ :25 UML Graphics: Conceptual Model Real Object Human Eye Display Device Graphics System Synthetic Model Synthetic Camera Real Light Synthetic.
Computer Graphics I, Fall 2010 Shading in OpenGL.
1 Introduction to Computer Graphics with WebGL Ed Angel Professor Emeritus of Computer Science Founding Director, Arts, Research, Technology and Science.
1 Angel: Interactive Computer Graphics 4E © Addison-Wesley 2005 Shading I Ed Angel Professor of Computer Science, Electrical and Computer Engineering,
CSE 381 – Advanced Game Programming GLSL Lighting.
1 Introduction to Computer Graphics with WebGL Ed Angel Professor Emeritus of Computer Science Founding Director, Arts, Research, Technology and Science.
Illumination and Shading
1 Introduction to Computer Graphics with WebGL Ed Angel Professor Emeritus of Computer Science Founding Director, Arts, Research, Technology and Science.
Shading in OpenGL Ed Angel Professor Emeritus of Computer Science University of New Mexico 1 E. Angel and D. Shreiner: Interactive Computer Graphics 6E.
1 Graphics CSCI 343, Fall 2015 Lecture 21 Lighting and Shading III.
Lecture Fall 2001 Illumination and Shading in OpenGL Light Sources Empirical Illumination Shading Transforming Normals Tong-Yee Lee.
Introduction to Computer Graphics with WebGL
Specular Reflection Lecture 27 Mon, Nov 10, 2003.
1 Introduction to Computer Graphics with WebGL Ed Angel Professor Emeritus of Computer Science Founding Director, Arts, Research, Technology and Science.
1 Introduction to Computer Graphics with WebGL Ed Angel Professor Emeritus of Computer Science Founding Director, Arts, Research, Technology and Science.
Local Illumination and Shading
OpenGL Shading. 2 Objectives Learn to shade objects so their images appear three-dimensional Introduce the types of light-material interactions Build.
Lighting and Reflection Angel Angel: Interactive Computer Graphics5E © Addison-Wesley
Advanced Texture Mapping Bump Mapping & Environment Mapping (Reflection)
Computer Graphics Lecture 25 Fasih ur Rehman. Last Class Shading.
Computer Graphics Ken-Yi Lee National Taiwan University (the slides are adapted from Bing-Yi Chen and Yung-Yu Chuang)
Computer Graphics: Illumination
C O M P U T E R G R A P H I C S Guoying Zhao 1 / 55 C O M P U T E R G R A P H I C S Guoying Zhao 1 / 55 Computer Graphics Three-Dimensional Graphics V.
Shading To determine the correct shades of color on the surface of graphical objects.
Shading II Ed Angel Professor of Computer Science, Electrical and Computer Engineering, and Media Arts University of New Mexico Angel: Interactive Computer.
CSC461: Lecture 23 Shading Computation
Vectors, Normals, & Shading
Shading in OpenGL Ed Angel
Introduction to Computer Graphics with WebGL
Introduction to Computer Graphics with WebGL
CS5500 Computer Graphics April 10, 2006.
Isaac Gang University of Mary Hardin-Baylor
Introduction to Computer Graphics with WebGL
Computer Graphics Material Colours and Lighting
CS 480/680 Computer Graphics Shading.
CS 480/680 Computer Graphics Shading.
Computer Graphics Shading in OpenGL
Shading in OpenGL Ed Angel Professor Emeritus of Computer Science
Shading II Ed Angel Professor Emeritus of Computer Science
Presentation transcript:

Shading

For Further Reading Angel 7 th Ed: ­Chapter 6 2

3 Why we need shading Suppose we build a model of a sphere using many polygons and color it with glColor. We get something like But we want

4 Shading Why does the image of a real sphere look like Light-material interactions cause each point to have a different color or shade Need to consider ­Light sources ­Material properties ­Location of viewer ­Surface orientation

Lab – Design Your Own Shading Write a simple function to compute the light intensity from: ­Light direction ­Normal ­Eye direction You’re actually writing a GLSL shader! But don’t worry, your task is greatly simplified. ­vec3 type has x, y, z component. ­dot(u, v) produces the dot product of u and v. 5

6 Scattering Light strikes A ­Some scattered ­Some absorbed Some of scattered light strikes B ­Some scattered ­Some absorbed Some of this scattered light strikes A and so on

7 Rendering Equation The infinite scattering and absorption of light can be described by the rendering equation ­Cannot be solved in general ­Ray tracing is a special case for perfectly reflecting surfaces Rendering equation is global and includes ­Shadows ­Multiple scattering from object to object

8 Global Effects translucent surface shadow multiple reflection

9 Local vs Global Rendering Correct shading requires a global calculation involving all objects and light sources ­Incompatible with pipeline model which shades each polygon independently (local rendering) However, in computer graphics, especially real time graphics, we are happy if things “look right” ­Exist many techniques for approximating global effects

10 Light-Material Interaction Light that strikes an object is partially absorbed and partially scattered (reflected) The amount reflected determines the color and brightness of the object ­A surface appears red under white light because the red component of the light is reflected and the rest is absorbed The reflected light is scattered in a manner that depends on the smoothness and orientation of the surface

11 Light Sources General light sources are difficult to work with because we must integrate light coming from all points on the source

12 Simple Light Sources Point source ­Model with position and color ­Distant source = infinite distance away (parallel) Spotlight ­Restrict light from ideal point source Ambient light ­Same amount of light everywhere in scene ­Can model contribution of many sources and reflecting surfaces

13 Surface Types The smoother a surface, the more reflected light is concentrated in the direction a perfect mirror would reflected the light A very rough surface scatters light in all directions smooth surface rough surface

14 Phong Model A simple model that can be computed rapidly Has three components ­Diffuse ­Specular ­Ambient Uses four vectors ­To source ­To viewer ­Normal ­Perfect reflector

15 Ideal Reflector Normal is determined by local orientation Angle of incidence = angle of relection The three vectors must be coplanar r = 2 (l · n ) n - l

16 Lambertian Surface Perfectly diffuse reflector Light scattered equally in all directions Amount of light reflected is proportional to the vertical component of incoming light ­reflected light ~ cos  i ­cos  i = l · n if vectors normalized ­There are also three coefficients, k r, k b, k g that show how much of each color component is reflected

17 Specular Surfaces Most surfaces are neither ideal diffusers nor perfectly specular (ideal refectors) Smooth surfaces show specular highlights due to incoming light being reflected in directions concentrated close to the direction of a perfect reflection specular highlight

18 Modeling Specular Relections Phong proposed using a term that dropped off as the angle between the viewer and the ideal reflection increased  I r ~ k s I cos   shininess coef absorption coef incoming intensity reflected intensity

19 The Shininess Coefficient Values of  between 100 and 200 correspond to metals Values between 5 and 10 give surface that look like plastic cos   

20 Ambient Light Ambient light is the result of multiple interactions between (large) light sources and the objects in the environment Amount and color depend on both the color of the light(s) and the material properties of the object Add k a I a to diffuse and specular terms reflection coef intensity of ambient light

21 Distance Terms The light from a point source that reaches a surface is inversely proportional to the square of the distance between them We can add a factor of the form 1/(a + bd +cd 2 ) to the diffuse and specular terms The constant and linear terms soften the effect of the point source

22 Light Sources In the Phong Model, we add the results from each light source Each light source has separate diffuse, specular, and ambient terms to allow for maximum flexibility even though this form does not have a physical justification Separate red, green and blue components Hence, 9 coefficients for each point source ­I dr, I dg, I db, I sr, I sg, I sb, I ar, I ag, I ab

23 Material Properties Material properties match light source properties ­Nine absorption coefficients k dr, k dg, k db, k sr, k sg, k sb, k ar, k ag, k ab ­Shininess coefficient 

Coefficients Simplified OpenGL allows maximum flexibility by giving us: ­9 coefficients for each light source I dr, I dg, I db, I sr, I sg, I sb, I ar, I ag, I ab ­9 absorption coefficients k dr, k dg, k db, k sr, k sg, k sb, k ar, k ag, k ab 24

But those are counter-intuitive. Usually it is enough to specify: 3 coefficients for the light source: –I r, I g, I b, –We assume (I dr, I dg, I db ) = (I sr, I sg, I sb ) = (I ar, I ag, I ab ) 6 coefficients for the material: –(k dr, k dg, k db ), ( k sr, k sg, k sb ), –We assume (k dr, k dg, k db ) = ( k ar, k ag, k ab ) –Often, we also have ( k sr, k sg, k sb ) = (1, 1, 1) 25

26 Adding up the Components For each light source and each color component, the Phong model can be written (without the distance terms) as I = k d I d l · n + k s I s ( v · r )  + k a I a For each color component we add contributions from all sources

27 Example Only differences in these teapots are the parameters in the Phong model

Shading in WebGL

29 WebGL lighting Need ­Normals ­Material properties ­Lights ­State-based shading functions have been deprecated (glNormal, glMaterial, glLight) ­Compute in application or in shaders Angel and Shreiner: Interactive Computer Graphics 7E © Addison-Wesley 2015

Example: Cube Lighting

31 Adding up the Components For each light source and each color component, the Phong model can be written (without the distance terms) as I = k d I d l · n + k s I s ( v · r )  + k a I a For each color component we add contributions from all sources

32 Modified Phong Model The specular term in the Phong model is problematic because it requires the calculation of a new reflection vector and view vector for each vertex Blinn suggested an approximation using the halfway vector that is more efficient Angel and Shreiner: Interactive Computer Graphics 7E © Addison-Wesley 2015

33 The Halfway Vector h is normalized vector halfway between l and v h = ( l + v )/ | l + v | Angel and Shreiner: Interactive Computer Graphics 7E © Addison-Wesley 2015

34 Using the halfway vector Replace ( v · r )  by ( n · h )   is chosen to match shininess Note that halfway angle is half of angle between r and v if vectors are coplanar Resulting model is known as the modified Phong or Phong-Blinn lighting model ­Specified in OpenGL standard Angel and Shreiner: Interactive Computer Graphics 7E © Addison-Wesley 2015

Vertex Shader in HTML (HTML code)HTML code // vertex attributes attribute vec4 vPosition; attribute vec4 vColor; attribute vec4 vNormal; varying vec4 fColor; uniform mat4 modelingMatrix; uniform mat4 viewingMatrix; uniform mat4 projectionMatrix; uniform vec4 lightPosition; uniform vec4 materialAmbient; uniform vec4 materialDiffuse; uniform vec4 materialSpecular; uniform float shininess;

Quick Review of Shader Variable Qualifiers Attribute attribute vec4 vNormal; from application varying –copy vertex attributes and other variables from vertex shaders to fragment shaders –values are interpolated by rasterizer varying vec4 fColor; uniform –shader-constant variable from application uniform mat4 modelingMatrix; uniform vec4 lightPosition;

(HTML code)HTML code void main() { vec4 L = normalize( lightPosition ); vec4 N = normalize( vNormal ); // Compute terms in the illumination equation vec4 ambient = materialAmbient; float Kd = max( dot(L, N), 0.0 ); vec4 diffuse = Kd * materialDiffuse; fColor = (ambient + diffuse) * vColor; gl_Position = projectionMatrix * viewingMatrix * modelingMatrix * vPosition; }

Setting Up Normals and Light (JavaScript code)JavaScript code function quad(a, b, c, d) { var t1 = subtract(vertices[b], vertices[a]); var t2 = subtract(vertices[c], vertices[b]); var normal = cross(t1, t2); var normal = vec4(normal); normal = normalize(normal); pointsArray.push(vertices[a]); colorsArray.push(vertexColors[a]); normalsArray.push(normal); pointsArray.push(vertices[b]); colorsArray.push(vertexColors[b]); normalsArray.push(normal);... } function colorCube() { quad( 1, 0, 3, 2 );... }

(JavaScript code)JavaScript code window.onload = function init() { var canvas = document.getElementById( "gl-canvas" );... // Generate pointsArray[], colorsArray[] and normalsArray[] from // vertices[] and vertexColors[]. colorCube(); // normal array atrribute buffer var nBuffer = gl.createBuffer(); gl.bindBuffer( gl.ARRAY_BUFFER, nBuffer ); gl.bufferData( gl.ARRAY_BUFFER, flatten(normalsArray), gl.STATIC_DRAW ); var vNormal = gl.getAttribLocation( program, "vNormal" ); gl.vertexAttribPointer( vNormal, 4, gl.FLOAT, false, 0, 0 ); gl.enableVertexAttribArray( vNormal );

(JavaScript code)JavaScript code // uniform variables in shaders modelingLoc = gl.getUniformLocation(program, "modelingMatrix"); viewingLoc = gl.getUniformLocation(program, "viewingMatrix"); projectionLoc = gl.getUniformLocation(program, "projectionMatrix"); gl.uniform4fv( gl.getUniformLocation(program, "lightPosition"), flatten(lightPosition) ); gl.uniform4fv( gl.getUniformLocation(program, "materialAmbient"), flatten(materialAmbient)); gl.uniform4fv( gl.getUniformLocation(program, "materialDiffuse"), flatten(materialDiffuse) ); gl.uniform4fv( gl.getUniformLocation(program, "materialSpecular"), flatten(materialSpecular) ); gl.uniform1f( gl.getUniformLocation(program, "shininess"), materialShininess);

(JavaScript code)JavaScript code function render() { modeling = mult(rotate(theta[xAxis], 1, 0, 0), mult(rotate(theta[yAxis], 0, 1, 0), rotate(theta[zAxis], 0, 0, 1))); viewing = lookAt([0,0,-2], [0,0,0], [0,1,0]); projection = perspective(45, 1.0, 1.0, 3.0);... gl.uniformMatrix4fv( modelingLoc, 0, flatten(modeling) ); gl.uniformMatrix4fv( viewingLoc, 0, flatten(viewing) ); gl.uniformMatrix4fv( projectionLoc, 0, flatten(projection) ); gl.drawArrays( gl.TRIANGLES, 0, numVertices ); requestAnimFrame( render ); }

A Quick Summary Phong lighting implemented in the vertex shader (inside the HTML file). Added to the WebGL JavaScript code: –(Per-vertex) normal vectors. –Light position –Material properties: ambient, diffuse, specular, shininess. 42

43 Normalization Cosine terms in lighting calculations can be computed using dot product Unit length vectors simplify calculation Usually we want to set the magnitudes to have unit length but ­Length can be affected by transformations ­Note that scaling does not preserved length GLSL has a normalization function Angel and Shreiner: Interactive Computer Graphics 7E © Addison-Wesley 2015

44 Normal for Triangle p0p0 p1p1 p2p2 n plane n ·(p - p 0 ) = 0 n = (p 2 - p 0 ) ×(p 1 - p 0 ) normalize n  n/ |n| p Note that right-hand rule determines outward face Angel and Shreiner: Interactive Computer Graphics 7E © Addison-Wesley 2015

45 Specifying a Point Light Source For each light source, we can set an RGBA for the diffuse, specular, and ambient components, and for the position var diffuse0 = vec4(1.0, 0.0, 0.0, 1.0); var ambient0 = vec4(1.0, 0.0, 0.0, 1.0); var specular0 = vec4(1.0, 0.0, 0.0, 1.0); var light0_pos = vec4(1.0, 2.0, 3,0, 1.0); Angel and Shreiner: Interactive Computer Graphics 7E © Addison-Wesley 2015

46 Distance and Direction The source colors are specified in RGBA The position is given in homogeneous coordinates ­If w =1.0, we are specifying a finite location ­If w =0.0, we are specifying a parallel source with the given direction vector The coefficients in distance terms are usually quadratic (1/(a+b*d+c*d*d)) where d is the distance from the point being rendered to the light source Angel and Shreiner: Interactive Computer Graphics 7E © Addison-Wesley 2015

47 Spotlights Derive from point source ­Direction ­Cutoff ­Attenuation Proportional to cos      Angel and Shreiner: Interactive Computer Graphics 7E © Addison-Wesley 2015

48 Moving Light Sources Light sources are geometric objects whose positions or directions are affected by the model-view matrix Depending on where we place the position (direction) setting function, we can ­Move the light source(s) with the object(s) ­Fix the object(s) and move the light source(s) ­Fix the light source(s) and move the object(s) ­Move the light source(s) and object(s) independently Angel and Shreiner: Interactive Computer Graphics 7E © Addison-Wesley 2015

49 Material Properties Material properties should match the terms in the light model Reflectivities w component gives opacity var materialAmbient = vec4( 1.0, 0.0, 1.0, 1.0 ); var materialDiffuse = vec4( 1.0, 0.8, 0.0, 1.0); var materialSpecular = vec4( 1.0, 0.8, 0.0, 1.0 ); var materialShininess = 100.0; Angel and Shreiner: Interactive Computer Graphics 7E © Addison-Wesley 2015

50 Front and Back Faces Every face has a front and back For many objects, we never see the back face so we don’t care how or if it’s rendered If it matters, we can handle in shader back faces not visibleback faces visible Angel and Shreiner: Interactive Computer Graphics 7E © Addison-Wesley 2015

51 Polygon Normals Polygons have a single normal ­Shades at the vertices as computed by the Phong model can be almost same ­Identical for a distant viewer (default) or if there is no specular component Consider model of sphere Want different normals at each vertex even though this concept is not quite correct mathematically

52 Smooth Shading We can set a new normal at each vertex Easy for sphere model ­If centered at origin n = p Now smooth shading works Note silhouette edge

53 Mesh Shading The previous example is not general because we knew the normal at each vertex analytically For polygonal models, Gouraud proposed we use the average of normals around a mesh vertex

54 Gouraud and Phong Shading Gouraud Shading ­Find average normal at each vertex (vertex normals) ­Apply Phong model at each vertex ­Interpolate vertex shades across each polygon Phong shading ­Find vertex normals ­Interpolate vertex normals across edges ­Option 1 (faster, but less accurate): Find shades along edges Interpolate edge shades across polygons ­Option 2 (slower but more accurate): Interpolate normals across polygons Find shades (for each pixel)

55 Gouraud Low polygon count Gouraud High polygon count

56 Comparison If the polygon mesh approximates surfaces with a high curvatures, Phong shading may look smooth while Gouraud shading may show edges Phong shading requires much more work than Gouraud shading ­Usually not available in real time systems Both need data structures to represent meshes so we can obtain vertex normals