University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2010 Tamara Munzner Lighting/Shading II Week.

Slides:



Advertisements
Similar presentations
Computer Graphics Inf4/MSc Computer Graphics Lecture 13 Illumination I – Local Models.
Advertisements

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.
Illumination and Shading
University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2007 Tamara Munzner Lighting/Shading III Week.
Computer Graphics - Class 10
University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2008 Tamara Munzner Lighting/Shading III Week.
University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2007 Tamara Munzner Shading, Advanced Rendering.
University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2008 Tamara Munzner Lighting/Shading II Week.
Shading in OpenGL CS4395: Computer Graphics 1 Mohan Sridharan Based on slides created by Edward Angel.
University of British Columbia CPSC 314 Computer Graphics May-June 2005 Tamara Munzner Lighting/Shading I, II,
IMGD 1001: Illumination by Mark Claypool
Computer Graphics (Fall 2005) COMS 4160, Lecture 16: Illumination and Shading 1
Lighting and Shading Wen-Chieh (Steve) Lin
University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2007 Tamara Munzner Lighting/Shading II Week.
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.
University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2005 Tamara Munzner Lighting and Shading Week.
6.1 Vis_04 Data Visualization Lecture 6 - A Rough Guide to Rendering.
CS5500 Computer Graphics March 26, Shading Reference: Ed Angel’s book.
University of British Columbia CPSC 414 Computer Graphics © Tamara Munzner 1 Lighting Week 5, Mon 29 Sep 2003 recap: picking, light sources lighting.
University of British Columbia CPSC 414 Computer Graphics © Tamara Munzner 1 Shading Week 5, Wed 1 Oct 2003 recap: lighting shading.
Illumination and Shading
University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2005 Tamara Munzner Lighting and Shading Week.
Aaron Bloomfield CS 445: Introduction to Graphics Fall 2006
Illumination and Shading. Illumination (Lighting) Model the interaction of light with surface points to determine their final color and brightness OpenGL.
CS 445 / 645: Introductory Computer Graphics
Computer Graphics Lighting.
1 Graphics CSCI 343, Fall 2013 Lecture 20 Lighting and Shading III.
Polygon Shading. Assigning color to a shape to make graphical scenes look realistic, or artistic, or whatever effect we’re attempting to achieve But first.
CS 445 / 645 Introduction to Computer Graphics Lecture 18 Shading Shading.
Shading (introduction to rendering). Rendering  We know how to specify the geometry but how is the color calculated.
University of Illinois at Chicago Electronic Visualization Laboratory (EVL) CS 426 Intro to 3D Computer Graphics © 2003, 2004, 2005 Jason Leigh Electronic.
COMPUTER GRAPHICS CS 482 – FALL 2014 AUGUST 27, 2014 FIXED-FUNCTION 3D GRAPHICS MESH SPECIFICATION LIGHTING SPECIFICATION REFLECTION SHADING HIERARCHICAL.
Shading and Illumination. OpenGL Shading Without ShadingWith Shading.
Shading & Texture. Shading Flat Shading The process of assigning colors to pixels. Smooth Shading Gouraud ShadingPhong Shading Shading.
CS 445: Introduction to Computer Graphics David Luebke University of Virginia Visibility Calculations and Occlusion Culling.
CSC418 Computer Graphics n Illumination n Lights n Lightinging models.
Computer Graphics I, Fall 2010 Shading in OpenGL.
Lecture 9: Lighting and Shading 1  Principles of Interactive Graphics  CMSCD2012  Dr David England, Room 718,  ex 2271
Lecture 14 Shading models 1.Shading Constant Shading (to be implemented) Gouraud Shading Phong Shading 2.Light and shading with OpenGL 1.
CS 445 / 645 Introduction to Computer Graphics Lecture 14 Lighting Lighting.
Rendering Overview CSE 3541 Matt Boggus. Rendering Algorithmically generating a 2D image from 3D models Raster graphics.
David Luebke 1 10/26/2015 Lighting CS 445/645 Introduction to Computer Graphics David Luebke, Spring 2003.
University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2010 Tamara Munzner Lighting/Shading III Week.
Steve Sterley. Real World Lighting Physical objects tend to interact with light in three ways: Absorption (black body) Reflection (mirror) Transmission.
University of Texas at Austin CS 378 – Game Technology Don Fussell CS 378: Computer Game Technology Basic Rendering Pipeline and Shading Spring 2012.
Komputer Grafik 2 (AK045206) Shading 1/17 Realisme : Shading.
Illumination and Shading
CS 325 Introduction to Computer Graphics 03 / 29 / 2010 Instructor: Michael Eckmann.
CS 445 / 645 Introduction to Computer Graphics Lecture 15 Shading Shading.
Lecture Fall 2001 Illumination and Shading in OpenGL Light Sources Empirical Illumination Shading Transforming Normals Tong-Yee Lee.
Lighting/Shading IV Advanced Rendering I Week 8, Mon Mar 3
11/5/2002 (c) University of Wisconsin, CS 559 Last Time Local Shading –Diffuse term –Specular term –All together –OpenGL brief overview.
Local Illumination and Shading
Where We Stand So far we know how to: –Transform between spaces –Rasterize –Decide what’s in front Next –Deciding its intensity and color.
1 CSCE 441: Computer Graphics Lighting Jinxiang Chai.
In the name of God Computer Graphics. Where We Stand So far we know how to: –Transform between spaces –Draw polygons Next –Deciding a pixel’s intensity.
Lighting/Shading University of British Columbia
Lighting and Reflection Angel Angel: Interactive Computer Graphics5E © Addison-Wesley
David Luebke3/16/2016 CS 551 / 645: Introductory Computer Graphics David Luebke
Illumination Models. Introduction 1 Illumination model: Given a point on a surface, what is the perceived color and intensity? Known as Lighting Model,
CPSC 314 LIGHTING AND SHADING UGRAD.CS.UBC.CA/~CS314 slide credits: Mikhail Bessmeltsev et al 1.
1 CSCE 441: Computer Graphics Lighting Jinxiang Chai.
Illumination and Shading. Illumination (Lighting) Model the interaction of light with surface points to determine their final color and brightness OpenGL.
Chapter 14 Shading Models.
Lighting/Shading III Week 7, Wed Mar 3
Lighting/Shading II Week 7, Mon Mar 1
Computer Graphics Material Colours and Lighting
Chapter 14 Shading Models.
Presentation transcript:

University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2010 Tamara Munzner Lighting/Shading II Week 7, Mon Mar 1

2 News Homework 3 out today Homework 2, Project 2 due tomorrow TA office hours in lab (Mon 2-3 lab, Shailen) Mon 3-5, Garrett Tue 11-1, Shailen (Tue 1-2 lab, Kai) Tue 3:50-5, Kai (my office hours in X661 Mon 4-5) intended for CS111, but will answer 314 questions if there are no 111 students waiting department news

3 Department of Computer Science Undergraduate Events Events this week Resume & Cover Letter Drop-In Session Date: Wed., Mar 3 Time: 12 – 3 pm (20 mins. sessions) Location: Rm 255, ICICS/CS Find a Job Fast! Info Session Date: Thurs., Mar 4 Time: 12:30 – 1:45 pm Location: DMP 201 Registration: Townhall Meting – 1 st Year CS Students Date: Thurs., Mar 4 Time: 12: pm Location: DMP 310 Lunch will be provided! Faculty Talk – Son Vuong Title: Mobile Learning via LIVES Date: Thurs., Mar 4 Time: 12:30 – 1:45 pm Location: DMP 201 Events next week Townhall Meeting – Combined Majors/Honours, BA, B.Comm in CS Date: Thurs., Mar 11 Time: 12:30 – 2 pm Location: DMP 310 Lunch will be provided! CS Distinguished Lecture Series – Featuring David Parkes Title: Incentive Mechanism Engineering in the Internet Age Date: Thurs., Mar 11 Time: 3:30 – 4:50 pm Location: DMP 110 CSSS Moive Night – “Zombieland” & “Iron Man” Date: Thurs., Mar 11 Time: 6 – 10 pm Location: DMP 310 Free pop & popcorn!

4 Review: Computing Barycentric Coordinates 2D triangle area half of parallelogram area from cross product A =  P1 +  P2 +  P3  P1 /A  P2 /A  P3 /A (  ) = (1,0,0) (0,1,0) (0,0,1) weighted combination of three points

5 Review: Light Sources directional/parallel lights point at infinity: (x,y,z,0) T point lights finite position: (x,y,z,1) T spotlights position, direction, angle ambient lights

6 Review: Light Source Placement geometry: positions and directions standard: world coordinate system effect: lights fixed wrt world geometry alternative: camera coordinate system effect: lights attached to camera (car headlights)

7 Review: Reflectance specular: perfect mirror with no scattering gloss: mixed, partial specularity diffuse: all directions with equal energy + + = specular + glossy + diffuse = reflectance distribution

8 Review: Reflection Equations I diffuse = k d I light (n l) nl 

9 diffuse plus specular Specular Reflection shiny surfaces exhibit specular reflection polished metal glossy car finish specular highlight bright spot from light shining on a specular surface view dependent highlight position is function of the viewer’s position

10 Specular Highlights Michiel van de Panne

11 Physics of Specular Reflection at the microscopic level a specular reflecting surface is very smooth thus rays of light are likely to bounce off the microgeometry in a mirror-like fashion the smoother the surface, the closer it becomes to a perfect mirror

12 Optics of Reflection reflection follows Snell’s Law: incoming ray and reflected ray lie in a plane with the surface normal angle the reflected ray forms with surface normal equals angle formed by incoming ray and surface normal  (l)ight =  (r)eflection

13 Non-Ideal Specular Reflectance Snell’s law applies to perfect mirror-like surfaces, but aside from mirrors (and chrome) few surfaces exhibit perfect specularity how can we capture the “softer” reflections of surface that are glossy, not mirror-like? one option: model the microgeometry of the surface and explicitly bounce rays off of it or…

14 Empirical Approximation we expect most reflected light to travel in direction predicted by Snell’s Law but because of microscopic surface variations, some light may be reflected in a direction slightly off the ideal reflected ray as angle from ideal reflected ray increases, we expect less light to be reflected

15 Empirical Approximation angular falloff how might we model this falloff?

16 n shiny : purely empirical constant, varies rate of falloff k s : specular coefficient, highlight color no physical basis, works ok in practice v Phong Lighting most common lighting model in computer graphics (Phong Bui-Tuong, 1975)

17 Phong Lighting: The n shiny Term Phong reflectance term drops off with divergence of viewing angle from ideal reflected ray what does this term control, visually? Viewing angle – reflected angle

18 Phong Examples varying l varying n shiny

19 Calculating Phong Lighting compute cosine term of Phong lighting with vectors v: unit vector towards viewer/eye r: ideal reflectance direction (unit vector) k s : specular component highlight color I light : incoming light intensity how to efficiently calculate r ? v

20 Calculating R Vector P = N cos  = projection of L onto N L P N 

21 Calculating R Vector P = N cos  = projection of L onto N P = N ( N · L ) L P N 

22 Calculating R Vector P = N cos  |L| |N| projection of L onto N P = N cos  L, N are unit length P = N ( N · L ) L P N 

23 Calculating R Vector P = N cos  |L| |N| projection of L onto N P = N cos  L, N are unit length P = N ( N · L ) 2 P = R + L 2 P – L = R 2 (N ( N · L )) - L = R L P P R L N 

24 Phong Lighting Model combine ambient, diffuse, specular components commonly called Phong lighting once per light once per color component reminder: normalize your vectors when calculating! normalize all vectors: n,l,r,v

25 Phong Lighting: Intensity Plots

26 Blinn-Phong Model variation with better physical interpretation Jim Blinn, 1977 h : halfway vector h must also be explicitly normalized: h / |h| highlight occurs when h near n l n v h

27 Light Source Falloff quadratic falloff brightness of objects depends on power per unit area that hits the object the power per unit area for a point or spot light decreases quadratically with distance Area 4  r 2 Area 4  (2r) 2

28 Light Source Falloff non-quadratic falloff many systems allow for other falloffs allows for faking effect of area light sources OpenGL / graphics hardware I o : intensity of light source x : object point r : distance of light from x

29 Lighting Review lighting models ambient normals don’t matter Lambert/diffuse angle between surface normal and light Phong/specular surface normal, light, and viewpoint

30 Lighting in OpenGL light source: amount of RGB light emitted value represents percentage of full intensity e.g., (1.0,0.5,0.5) every light source emits ambient, diffuse, and specular light materials: amount of RGB light reflected value represents percentage reflected e.g., (0.0,1.0,0.5) interaction: multiply components red light (1,0,0) x green surface (0,1,0) = black (0,0,0)

31 Lighting in OpenGL glLightfv(GL_LIGHT0, GL_AMBIENT, amb_light_rgba ); glLightfv(GL_LIGHT0, GL_DIFFUSE, dif_light_rgba ); glLightfv(GL_LIGHT0, GL_SPECULAR, spec_light_rgba ); glLightfv(GL_LIGHT0, GL_POSITION, position); glEnable(GL_LIGHT0); glMaterialfv( GL_FRONT, GL_AMBIENT, ambient_rgba ); glMaterialfv( GL_FRONT, GL_DIFFUSE, diffuse_rgba ); glMaterialfv( GL_FRONT, GL_SPECULAR, specular_rgba ); glMaterialfv( GL_FRONT, GL_SHININESS, n ); warning: glMaterial is expensive and tricky use cheap and simple glColor when possible see OpenGL Pitfall #14 from Kilgard’s list

32 Shading

33 Lighting vs. Shading lighting process of computing the luminous intensity (i.e., outgoing light) at a particular 3-D point, usually on a surface shading the process of assigning colors to pixels (why the distinction?)

34 Applying Illumination we now have an illumination model for a point on a surface if surface defined as mesh of polygonal facets, which points should we use? fairly expensive calculation several possible answers, each with different implications for visual quality of result

35 Applying Illumination polygonal/triangular models each facet has a constant surface normal if light is directional, diffuse reflectance is constant across the facet why?

36 Flat Shading simplest approach calculates illumination at a single point for each polygon obviously inaccurate for smooth surfaces

37 Flat Shading Approximations if an object really is faceted, is this accurate? no! for point sources, the direction to light varies across the facet for specular reflectance, direction to eye varies across the facet

38 Improving Flat Shading what if evaluate Phong lighting model at each pixel of the polygon? better, but result still clearly faceted for smoother-looking surfaces we introduce vertex normals at each vertex usually different from facet normal used only for shading think of as a better approximation of the real surface that the polygons approximate

39 Vertex Normals vertex normals may be provided with the model computed from first principles approximated by averaging the normals of the facets that share the vertex

40 Gouraud Shading most common approach, and what OpenGL does perform Phong lighting at the vertices linearly interpolate the resulting colors over faces along edges along scanlines C1C1 C2C2 C3C3 edge: mix of c 1, c 2 edge: mix of c1, c3 interior: mix of c1, c2, c3 does this eliminate the facets?

41 Gouraud Shading Artifacts often appears dull, chalky lacks accurate specular component if included, will be averaged over entire polygon C1C1 C2C2 C3C3 this interior shading missed! C1C1 C2C2 C3C3 this vertex shading spread over too much area

42 Gouraud Shading Artifacts Mach bands eye enhances discontinuity in first derivative very disturbing, especially for highlights

43 Gouraud Shading Artifacts C1C1 C2C2 C3C3 C4C4 Discontinuity in rate of color change occurs here Mach bands

44 Gouraud Shading Artifacts perspective transformations affine combinations only invariant under affine, not under perspective transformations thus, perspective projection alters the linear interpolation! Z – into the scene Image plane

45 Gouraud Shading Artifacts perspective transformation problem colors slightly “swim” on the surface as objects move relative to the camera usually ignored since often only small difference usually smaller than changes from lighting variations to do it right either shading in object space or correction for perspective foreshortening expensive – thus hardly ever done for colors

46 Phong Shading linearly interpolating surface normal across the facet, applying Phong lighting model at every pixel same input as Gouraud shading pro: much smoother results con: considerably more expensive not the same as Phong lighting common confusion Phong lighting: empirical model to calculate illumination at a point on a surface

47 Phong Shading linearly interpolate the vertex normals compute lighting equations at each pixel can use specular component N1N1 N2N2 N3N3 N4N4 remember: normals used in diffuse and specular terms discontinuity in normal’s rate of change harder to detect

48 Phong Shading Difficulties computationally expensive per-pixel vector normalization and lighting computation! floating point operations required lighting after perspective projection messes up the angles between vectors have to keep eye-space vectors around no direct support in pipeline hardware but can be simulated with texture mapping stay tuned for modern hardware: shaders

49 Gouraud Phong Shading Artifacts: Silhouettes polygonal silhouettes remain

50 A D C B Interpolate between AB and AD  B A D C Interpolate between CD and AD Rotate -90 o and color same point Shading Artifacts: Orientation interpolation dependent on polygon orientation view dependence!

51 B A C vertex B shared by two rectangles on the right, but not by the one on the left E D F H G first portion of the scanline is interpolated between DE and AC second portion of the scanline is interpolated between BC and GH a large discontinuity could arise Shading Artifacts: Shared Vertices

52 Shading Models Summary flat shading compute Phong lighting once for entire polygon Gouraud shading compute Phong lighting at the vertices and interpolate lighting values across polygon Phong shading compute averaged vertex normals interpolate normals across polygon and perform Phong lighting across polygon

53 Shutterbug: Flat Shading

54 Shutterbug: Gouraud Shading

55 Shutterbug: Phong Shading

56 Non-Photorealistic Shading cool-to-warm shading

57 Non-Photorealistic Shading draw silhouettes: if, e=edge-eye vector draw creases: if

58 Computing Normals per-vertex normals by interpolating per-facet normals OpenGL supports both computing normal for a polygon c b a

59 Computing Normals per-vertex normals by interpolating per-facet normals OpenGL supports both computing normal for a polygon three points form two vectors c b a c-b a-b

60 Computing Normals per-vertex normals by interpolating per-facet normals OpenGL supports both computing normal for a polygon three points form two vectors cross: normal of plane gives direction normalize to unit length! which side is up? convention: points in counterclockwise order c b a c-b a-b (a-b) x (c-b)

61 Specifying Normals OpenGL state machine uses last normal specified if no normals specified, assumes all identical per-vertex normals glNormal3f(1,1,1); glVertex3f(3,4,5); glNormal3f(1,1,0); glVertex3f(10,5,2); per-face normals glNormal3f(1,1,1); glVertex3f(3,4,5); glVertex3f(10,5,2);