1 of 29 Interesting Illumination Demo There’s a very nice Java illumination model demo which may...

29
1 of 29 Interesting Illumination Demo There’s a very nice Java illumination model demo which may help you understand the effects of different kinds of reflections available at: http://www.siggraph.org/ education/materials/Hype rGraph/illumin/vrml/pell ucid.html Try playing with the various parameters and see if you can predict what the sphere will look like
  • date post

    19-Dec-2015
  • Category

    Documents

  • view

    214
  • download

    0

Transcript of 1 of 29 Interesting Illumination Demo There’s a very nice Java illumination model demo which may...

1of29

Interesting Illumination Demo

There’s a very nice Java illumination model demo which may help you understand the effects of different kinds of reflections available at:http://www.siggraph.org/education/materials/HyperGraph/illumin/vrml/pellucid.html

Try playing with the various parameters and see if you can predict what the sphere will look like

Course Website: http://www.comp.dit.ie/bmacnamee

Computer Graphics 16:Polygon Rendering

Methods

3of29

Contents

Today we will start to look at rendering methods used in computer graphics

– Flat surface rendering– Gouraud surface rendering– Phong surface rendering

4of29

No Surface RenderingIm

ages

com

e fr

om:

ww

w.s

iggr

aph.

org/

educ

atio

n/m

ater

ials

/Hyp

erG

raph

/sca

nlin

e/sh

ade_

mod

els/

sha

ding

.htm

5of29

Flat Surface RenderingIm

ages

com

e fr

om:

ww

w.s

iggr

aph.

org/

educ

atio

n/m

ater

ials

/Hyp

erG

raph

/sca

nlin

e/sh

ade_

mod

els/

sha

ding

.htm

6of29

No Surface Rendering Vs Flat Surface Rendering

Flat Surface RenderingNo Surface Rendering

Images come from: www.siggraph.org/education/materials/HyperGraph/scanline/shade_models/shading.htm

7of29

Gouraud Surface RenderingIm

ages

com

e fr

om:

ww

w.s

iggr

aph.

org/

educ

atio

n/m

ater

ials

/Hyp

erG

raph

/sca

nlin

e/sh

ade_

mod

els/

sha

ding

.htm

8of29

No Surface Rendering Vs Flat Surface Rendering

Gouraud Surface RenderingFlat Surface Rendering

Images come from: www.siggraph.org/education/materials/HyperGraph/scanline/shade_models/shading.htm

9of29

Phong Surface RenderingIm

ages

com

e fr

om:

ww

w.s

iggr

aph.

org/

educ

atio

n/m

ater

ials

/Hyp

erG

raph

/sca

nlin

e/sh

ade_

mod

els/

sha

ding

.htm

10of29

No Surface Rendering Vs Flat Surface Rendering

Phong Surface RenderingGouraud Surface Rendering

Images come from: www.siggraph.org/education/materials/HyperGraph/scanline/shade_models/shading.htm

11of29

Flat Surface Rendering

The simplest method for rendering a polygon surface

The same colour is assigned to all surface positions

The illumination at a single point on the surface is calculated and used for the entire surface

Flat surface rendering is extremely fast, but can be unrealistic

12of29

Overcoming Flat Shading Limitations

Just add lots and lots of polygons – however, this is SLOW!

Imag

es c

ome

from

: http

://w

ww

-sta

tic.c

c.ga

tech

.edu

/cla

sses

/AY

2004

/cs4

451a

_spr

ing/

shad

ing_

mod

els/

linin

t.htm

l

13of29

Gouraud Surface Rendering

Gouraud surface shading was developed in the 1970s by Henri GouraudWorked at the University of Utah along with Ivan Sutherland and David EvansOften also called intensity-interpolation surface renderingIntensity levels are calculated at each vertex and interpolated across the surface

14of29

Gouraud Surface Rendering (cont…)

To render a polygon, Gouraud surface rendering proceeds as follows:

1. Determine the average unit normal vector at each vertex of the polygon

2. Apply an illumination model at each polygon vertex to obtain the light intensity at that position

3. Linearly interpolate the vertex intensities over the projected area of the polygon

15of29

The average unit normal vector at v is given as:

or more generally:

Gouraud Surface Rendering (cont…)

n

ii

n

ii

v

N

NN

1

1

4321

4321

NNNN

NNNNNv

N2

Nv

N4

N3

N1

v

16of29

Gouraud Surface Rendering (cont…)

221

411

21

244 I

yy

yyI

yy

yyI

1

2

3

4 5

x

y

Scan-line

p 223

533

23

255 I

yy

yyI

yy

yyI

545

44

45

5 Ixx

xxI

xx

xxI ppp

Illumination values are linearly interpolated across each scan-line

17of29

Advantages of Gouraud Surface Rendering

18of29

Gouraud Surface Rendering ExampleIm

ages

com

e fr

om: h

ttp://

ww

w-s

tatic

.cc.

gate

ch.e

du/c

lass

es/A

Y20

04/c

s445

1a_s

prin

g/sh

adin

g_m

odel

s/lin

int.h

tml

19of29

Gouraud Surface Rendering Implementation

Gouraud surfacing rendering can be implemented relatively efficiently using an iterative approach

Typically Grouaud shading is implemented as part of a visible surface detection technique

20of29

Problems With Gouraud Shading

Gouraud shading tends to miss certain highlighting In particular Gouraud shading has a problem with specular reflections

Also, Gouraud shading can introduce anomalies known as Mach bands

21of29

Problems With Gouraud Shading (cont…)

The major problem with Gouraud shading is in handling specular reflections

Gouraud shading Phong shading

22of29

Mach Bands

A psychological phenomenon whereby we see bright bands where two blocks of solid colour meetA good demo is available to experiment with this at:

http://www.nbb.cornell.edu/neurobio/land/OldStudentProjects/cs490-96to97/anson/MachBandingApplet/

Try playing with the various parameters and see if you can predict what the sphere will look like

23of29

Phong Surface Rendering

A more accurate interpolation based approach for rendering a polygon was developed by Phong Bui Tuong

Basically the Phong surface rendering model (or normal-vector interpolation rendering) interpolates normal vectors instead of intensity values

24of29

Phong Surface Rendering (cont…)

To render a polygon, Phong surface rendering proceeds as follows:

1. Determine the average unit normal vector at each vertex of the polygon

2. Linearly interpolate the vertex normals over the projected area of the polygon

3. Apply an illumination model at positions along scan lines to calculate pixel intensities using the interpolated normal vectors

25of29

Phong Surface Rendering (cont…)

N4

N1

N2

N3

Scan line

221

411

21

244 N

yy

yyN

yy

yyN

N5

223

533

23

255 N

yy

yyN

yy

yyN

Np

p5

54

44

54

5 Nyy

yyN

yy

yyN ppp

26of29

Phong Surface Rendering Implementation

Phong shading is much slower than Gouraud shading as the lighting model is revaluated so many times

However, there are fast Phong surface rendering approaches that can be implemented iteratively

Typically Phong shading is implemented as part of a visible surface detection technique

27of29

Phong Shading ExamplesIm

ag

es

com

e f

rom

Ga

rry’

s M

od

: h

ttp

://w

ww

.ga

rry.

tv/

28of29

Phong Shading ExamplesIm

ag

es

com

e f

rom

Ga

rry’

s M

od

: h

ttp

://w

ww

.ga

rry.

tv/

29of29

Summary

For realistic rendering of polygons we need interpolation methods to determine lighting positions

Flat shading is fast, but unrealistic

Gouraud shading is better, but does not handle specular reflections very well

Phong shading is better still, but can be slow