light sources sunny day model point source at infinity
play

Light Sources Sunny day model : "point source at - PowerPoint PPT Presentation

Light Sources Sunny day model : "point source at infinity" lecture 12 sunlight (parallel) - lighting spotlight - materials: diffuse, specular, ambient - shading: Flat vs. Gouraud vs Phong light bulb ambient Light


  1. Light Sources Sunny day model : "point source at infinity" lecture 12 sunlight (parallel) - lighting spotlight - materials: diffuse, specular, ambient - shading: Flat vs. Gouraud vs Phong light bulb ambient Light reaching a unit area patch is proportional to Spotlight model Spotlight model Properties of a spotlight: - 3D position - peak direction - spread (light bulb vs. laser beam) - falloff in strength with distance Why are the poles of the earth cold and the equator hot? other examples: lamp, ceiling light, window, ..... The illumination depends on the spread of the spotlight's beam. We can model this effect as: illumination at x ~ The illumination at x depends on direction of the spotlight and on the spread of the spotlight's beam (conceptually, the cone width).

  2. Putting it all together... let l(x) be the effective light source vector at x that is due to the spotlight. Model the illumination from spotlight to be proportional to: How should the illumination at x depend on distance ? Special case: (non-directional) point light Ambient light lecture 12 e.g. candle flame, light bulb - lighting - materials: diffuse, specular, ambient Lighting + material allows us to calculate RGB. i.e. RGB(x) = ? - shading: Flat vs. Gouraud vs Phong Same illumination everywhere in space. Diffuse / Matte / Lambertian Material (Reflectance) Material (Reflectance) diffuse glossy mirror Recall: light reaching a unit area patch is proportional to diffuse glossy mirror I will discuss them in order: diffuse, mirror, glossy.

  3. Mirror (extreme opposite of diffuse) Glossy ( "specular", shiny) Mirror High school physics: angle of incidence = angle of reflection. In the next few slides, all vectors are unit length. Bright regions are called "highlights". Glossy ( "specular", shiny) Phong model ("specular") Note the conceptual similarity to the spotlight model. spotlight - spread of emitted beam glossy highlight - spread of reflected beam Highlights occur at points near points where r = V . OpenGL lights Blinn-Phong model ("specular") OpenGL 1.0 (somewhat arbitrarily....) -> used in OpenGL glLightf( light, parameterName, parameter ) light : a number (you can have up to 8 lights) parameterName: GL_AMBIENT GL_DIFFUSE color of the light GL_SPECULAR H is called the "half way vector" GL_POSITION GL_SPOT_DIRECTION GL_SPOT_EXPONENT GL_SPOT_CUTOFF* GL_CONSTANT_ATTENUATION GL_LINEAR_ATTENUATION GL_QUADRATIC_ATTENUATION Exercise: what is the computational advantage of Blinn-Phong over Phong? * cutoff in [0, 90] or 180 (uniform)

  4. glEnable(GL_LIGHTING) OpenGL Materials glEnable(GL_LIGHT0) ambientMaterial = ( 0, 0.5, 0.5, 1 ) // middle cyan diffuseMaterial = ( 1, 0, 1, 1 ) // magenta diffuseLight = ( 1, 1, .5, 1 ) // yellowish light specularMaterial = ( 1 , 0, 0, 1 ) // red glMaterialfv( face, parameterName, parameters ) specularLight = ( 1, 1, .5, 1 ) // " shininess = (100.0, ) // not a typo ambientLight = ( 1, 1, .5, 1 ) // " // rather, Python "tuple" notation face : GL_FRONT, GL_BACK, or GL_FRONT_AND_BACK // The above are RGBA values glMaterial(GL_FRONT, GL_AMBIENT, ambientMaterial ) parameterName : // (A = alpha, we will cover it later in the course) glMaterial(GL_FRONT, GL_DIFFUSE, diffuseMaterial ) glMaterial(GL_FRONT, GL_SPECULAR, specularMaterial ) GL_AMBIENT // OpenGL allows you to use different colored light source for glMaterial(GL_FRONT, GL_SHININESS, shininess ) GL_DIFFUSE // ambient vs. diffuse vs. specular. GL_SPECULAR // However, IMHO, this makes no sense physically ! GL_SHININESS ...... position = ( -1.5, 1.0, -4.0, 1 ) Exercise: which of the above values are in the formula below ? glLightfv(GL_LIGHT0, GL_AMBIENT, ambientLight) glLightfv(GL_LIGHT0, GL_DIFFUSE, diffuseLight) A few lectures from now, we will discuss how OpenGL does mirror glLightfv(GL_LIGHT0, GL_SPECULAR, specularLight) surfaces ("environment mapping") glLightfv(GL_LIGHT0, GL_POSITION, position) BRDF (Bidirectional Reflection Distribution Function) "Measuring and modelling Anisotropic Reflection" Material Modelling beyond OpenGL 1.0 [Ward, 1992] The above examples are for the "fixed function pipeline" only. With modern OpenGL (GLSL), you can code up whatever reflectance model and lighting model you wish. This can be part of a vertex shader or fragment shader. To fully characterize the reflection properties of a material at a point, you need 4 parameters. In a real scene, the outgoing light in each outgoing direction is the sum that is due to all incoming directions. e.g. "brushed" metal Recent models use subsurface scattering lecture 12 (especially for modelling wax, skin). - lighting - materials: diffuse, specular (Blinn-Phong), ambient - shading: flat vs Gouraud vs Phong shading surface sub-surface https://graphics.stanford.edu/papers/bssrdf/bssrdf.pdf http://www.vrayc4d.com/manual/scenes/anisotropic-brushed-metal-186

  5. How to choose the RGB values at each pixel ? It is natural to associate a surface normal with each polygon . glBegin(GL_QUAD) glNormal3f( __,___, __) Recall lecture 6: Filling a Polygon glVertex3f( __, ___, ___) glNormal3f( __,___, __) glVertex3f( __, ___, ___) glNormal3f( __,___, __) glVertex3f( __, ___, ___) glNormal3f( __,___, __) glVertex3f( __, ___, ___) OpenGL allows us to explicitly define a surface normal at each vertex . glEnd() for y = ymin to ymax { compute intersection of polygon edges with row y between adjacent pairs of edges } Linear Interpolation (LERP) Compute the RGB at the vertices using a shading model (first half of today's lecture). How do we interpolate ? Smooth (Gouraud) Shading Flat vs. Smooth (Gouraud) Shading A vertex belongs to more than one polygon. So, in principle, we could use different surface normals when the vertex is being used http://www.felixgers.de/teaching/jogl/lightAlgo.html to fill in different polygons. For smooth shading, we can define vertex normals to be an average of the normals of the faces that the vertex belongs to. Each vertex may have Each vertex may have Smooth / Gouraud Flat same normal in all polygons, different normals in (vertex normals are averages of and this normal is different neighboring face normals.) (MODIFIED Feb. 22: different polygons. than the normal of the color of one vertex is used for the polygons themselves. entire polygon ) https://www.opengl.org/sdk/docs/man2/xhtml/glShadeModel.xml (See next slide.)

  6. Shading in OpenGL 1.0 Phong shading Phong shading OpenGL 1.0 does not do Phong shading. It does flat shading and smooth shading. glShadeModel( GL_FLAT ) // one color used for each polygon glShadeModel( GL_SMOOTH ) // default // Linear interpolation from vertex colors Linearly interpolating the (RGB) intensities from the vertices // Smooth shading includes Gouraud shading is not quite right, especially for shiny surfaces. Phong observed it would be better to linearly interpolate the If the highlight occurs in the middle of a polygon, normals and then compute the RGB values at each pixel Gouraud shading will miss it but Phong shading will find (using the Phong model). it. Announcements Next Tuesday: review Exercises Next Thursday: midterm Last name A-P (Trottier 0100), Last name Q-Z (Rutherford Physics 114) A2 : posted soon (latest next week) due date (to be determined)

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend