1 / 80

Visual Appearance (Shading & Texture mapping)

Visual Appearance (Shading & Texture mapping). Course Note Credit: Some of slides are extracted from the course notes of prof. J. Lee (SNU), prof. M. Desbrun (USC) and prof. H.-W. Shen (OSU) and others. Shading (Local illumination). Photorealism in Computer Graphics.

dchristie
Download Presentation

Visual Appearance (Shading & Texture mapping)

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Visual Appearance(Shading & Texture mapping) Course Note Credit: Some of slides are extracted from the course notes of prof. J. Lee (SNU), prof. M. Desbrun (USC) and prof. H.-W. Shen (OSU) and others.

  2. Shading(Local illumination)

  3. Photorealism in Computer Graphics • Photorealism in computer graphics involves • Accurate representations of surface properties, and • Good physical descriptions of the lighting effects • Modeling the lighting effects that we see on an object is a complex process, involving principles of both physics and psychology • Physical illumination models involve • Material properties, object position relative to light sources and other objects, the features of the light sources, and so on

  4. Illumination and Rendering • An illumination model in computer graphics • also called a lighting model or a shading model • used to calculate the color of an illuminated position on the surface of an object • Approximations of the physical laws • A surface-rendering method determine the pixel colors for all projected positions in a scene

  5. Light Sources • Point light sources • Emitting radiant energy at a single point • Specified with its position and the color of the emitted light • Infinitely distant light sources • A large light source, such as sun, that is very far from a scene • Little variation in its directional effects • Specified with its color value and a fixed direction for the light rays

  6. Light Sources • Directional light sources • Produces a directional beam of light • Spotlight effects • Area light sources

  7. Light Sources • Radial intensity attenuation • As radiant energy travels, its amplitude is attenuated by the factor • Sometimes, more realistic attenuation effects can be obtained with an inverse quadratic function of distance • The intensity attenuation is not applied to light sources at infinity because all points in the scene are at a nearly equal distance from a far-off source

  8. Light Sources • Angular intensity attenuation • For a directional light, we can attenuate the light intensity angularly as well as radially

  9. Surface Lighting Effects • An illumination model computes the lighting effects for a surface using the various optical properties • Degree of transparency, color reflectance, surface texture • The reflection (phong illumination) model describes the way incident light reflects from an opaque surface • Diffuse, ambient, specular reflections • Simple approximation of actual physical models

  10. Diffuse Reflection • Incident light is scattered with equal intensity in all directions • Such surfaces are called ideal diffuse reflectors (also referred to as Lambertian reflectors)

  11. Lambert’s Cosine Law • The reflected luminous intensity in any direction from a perfectly diffusing surface varies as the cosine of the angle between the direction of incident light and the normal vector of the surface. • Intuitively: cross-sectional area of the “beam” intersecting an elementof surface area is smaller for greater angles with the normal.

  12. : the intensity of the light source : diffuse reflection coefficient, : the surface normal (unit vector) : the direction of light source, (unit vector) Diffuse Reflection • Ideally diffuse surfaces obey cosine law. • Often called Lambertian surfaces.

  13. Ambient Light • Multiple reflection of nearby (light-reflecting) objects yields a uniform illumination • A form of diffuse reflection independent of the viewing direction and the spatial orientation of a surface • Ambient illumination is constant for an object : the incident ambient intensity : ambient reflection coefficient, the proportion reflected away from the surface

  14. Ambient + Diffuse

  15. Specular Reflection • Perfect reflector (mirror) reflects all lights to the direction where angle of reflection is identical to the angle of incidence • It accounts for the highlight

  16. Specular Reflection • Phong specular-reflection model • Note that N, L, and R are coplanar, but V may not be coplanar to the others : intensity of the incident light : color-independent specular coefficient : the gloss of the surface

  17. Specular Reflection • Glossiness of surfaces

  18. Specular Reflection • Specular-reflection coefficient ks is a material property • For some material, ks varies depending on q • ks =1 if q =90° • Calcularing the reflection vector R

  19. Specular Reflection • Simplified Phong model using halfway vector • H is constant if both viewer and the light source are sufficiently far from the surface

  20. Ambient+Diffuse+Specular Reflections • Single light source • Multiple light source

  21. Parameter Choosing Tips • For a RGB color description, each intensity and reflectance specification is a three-element vector • The sum of reflectance coefficients is usually smaller than one • Try n in the range [0, 100] • Use a small ka (~0.1) • Example • Metal: n=90, ka=0.1, kd=0.2, ks=0.5

  22. Atmospheric Effects • A hazy atmosphere makes colors fade and objects appear dimmer • Hazy-atmosphere effect is often simulated with an exponential attenuation function such as • Higher values for r produce a denser atmosphere

  23. Polygon Rendering Methods • We could use an illumination model to determine the surface intensity at every projected pixel position • Or, we could apply the illumination model to a few selected points and approximate the intensity at the other surface positions • Curved surfaces are often approximated by polygonal surfaces • So, polygonal (piecewise planar) surfaces often need to be rendered as if they are smooth

  24. Constant-Intensity Surface Rendering • Constant (flat) shading • Each polygon is one face of a polyhedron and is not a section of a curved-surface approximation mesh

  25. Intensity-Interpolation Surface Rendering • Gouraud shading • Rendering a curved surface that is approximated with a polygon mesh • Interpolate intensities at polygon vertices • Procedure • Determine the average unit normal vector at each vertex • Apply an illumination model at each polygon vertex to obtain the light intensity at that position • Linearly interpolate the vertex intensities over the projected area of the polygon

  26. + + + ( N N N N ) = 1 2 3 4 N v + + + N N N N 1 2 3 4 Intensity-Interpolation Surface Rendering • Normal vectors at vertices • Averaging the normal vectors for each polygon sharing that vertex

  27. Intensity-Interpolation Surface Rendering • Intensity interpolation along scan lines • I4 and I5 are interpolated along y-axis, and then • Ip is interpolated along x-axis • Incremental calculation is also possible y 3 1 scan line p 4 5 2 x

  28. Intensity-Interpolation Surface Rendering

  29. Gouraud Shading Problems • Lighting in the polygon interior is inaccurate • Mach band effect • Optical illusion

  30. Mach Band Effect • These “Mach Bands” are not physically there. Instead, they are illusions due to excitation and inhibition in our neural processing The bright bands at 45 degrees (and 135 degrees) are illusory. The intensity of each square is the same.

  31. Mach Band artifact (Gouraud Shading) • Mach bands: • Caused by interaction of neighboring retinal neurons. • Acts as a sort of high-pass filter, accentuating discontinuities in first derivative. • Linear interpolation causes first deriv. Discontinuities at polygon edges.

  32. n1 n2 n3 Normal-Vector Interpolation for Surface Rendering • Phong shading • Interpolate normal vectors at polygon vertices • Procedure • Determine the average unit normal vector at each vertex • Linearly interpolate the vertex normals over the projected area of the polygon • Apply an illumination model at positions along scan lines to calculate pixel intensities

  33. Gouraud versus Phong Shading • Gouraud shading is faster than Phong shading • OpenGL supports Gouraud shading • Phong shading is more accurate

  34. Texture Mapping

  35. Can you do this …

  36. Visual Realism

  37. Texture Mapping • Surfaces in real world are very complex • Objects have properties that vary across surface • Cannot model all the fine variations • We need to find ways to add surface detail • How?

  38. Texture Mapping • Of course, one can model the exact micro-geometry + material property to control the look and feel of a surface • But, it may get extremely costly • So, graphics use a more practical approach – texture mapping

  39. Texture Mapping • Texture Mapping • Want a function that assigns a color to each point • The the surface is a 2D domain, so that is essentially an image • can represent using any image representation • raster texture images are very popular

  40. Photo-textures

  41. OpenGL functions - demo • Usually texture is a (2D/3D) image. • During initialization read in or create the texture image and place it into the OpenGL state. glTexImage2D (GL_TEXTURE_2D, 0, GL_RGB, imageWidth, imageHeight, 0, GL_RGB, GL_UNSIGNED_BYTE, imageData); • Before rendering your textured object, enable texture mapping and tell the system to use this particular texture. glBindTexture (GL_TEXTURE_2D, 13);

  42. OpenGL functions • During rendering, give the cartesian coordinates and the texture coordinates for each vertex. glBegin (GL_QUADS); glTexCoord2f (0.0, 0.0); glVertex3f (0.0, 0.0, 0.0); glTexCoord2f (1.0, 0.0); glVertex3f (10.0, 0.0, 0.0); glTexCoord2f (1.0, 1.0); glVertex3f (10.0, 10.0, 0.0); glTexCoord2f (0.0, 1.0); glVertex3f (0.0, 10.0, 0.0); glEnd ();

  43. Texture and Texel • Each pixel in a texture map is called a Texel • Each Texel is associated with a (u,v) 2D texture coordinate • The range of u, v is [0.0,1.0] due to normalization

  44. (u,v) tuple • For any (u,v) in the range of (0-1, 0-1) multiplied by texture image width and height, we can find the corresponding value in the texture map

  45. How do we get F(u,v)? • We are given a discrete set of values: • F[i,j] for i=0,…,N, j=0,…,M • Nearest neighbor: • F(u,v) = F[ round(N*u), round(M*v) ] • Linear Interpolation: • i = floor(N*u), j = floor(M*v) • interpolate from F[i,j], F[i+1,j], F[i,j+1], F[i+1,j] • Filtering in general !

  46. Nearest neighbor Linear Interpolation Interpolation

  47. Specifying texture coordinates • Texture coordinates needed at every vertex • Hard to specify by hand • Difficult to wrap a 2D texture around a 3D object

  48. Texture Filtering • Resampling using mip mapping • Magnification: Interpolation • Minification: Averaging Texture Image Texture => Image We would like a constant cost per pixel

  49. Mip Mapping • MIP = Multim In Parvo = Many things in a small place • Constructs an image pyramid. Each level is a prefilteredversion of the level below resampled at half the frequency. • Whilerasterizing use the level with the sampling rate closest to the desired sampling rate.

More Related