12
© 2012 Kavita Bala (with previous instructors James/Marschner) Cornell CS4620/5620 Fall 2012 • Lecture 12 1 CS4620/5620: Lecture 12 Rasterization © 2012 Kavita Bala (with previous instructors James/Marschner) Cornell CS4620/5620 Fall 2012 • Lecture 12 Announcements • Turn in HW 1 • PPA 1 out • Friday lecture – History of graphics – PPA 1 in 4621 2

Rasterization - cs.cornell.edu

  • Upload
    others

  • View
    6

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Rasterization - cs.cornell.edu

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12 1

CS4620/5620: Lecture 12

Rasterization

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Announcements

• Turn in HW 1

• PPA 1 out

• Friday lecture– History of graphics– PPA 1 in 4621

2

Page 2: Rasterization - cs.cornell.edu

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

The graphics pipeline

• The standard approach to object-order graphics• Many versions exist

– software, e.g. Pixar’s REYES architecture• many options for quality and flexibility

– hardware, e.g. graphics cards in PCs• amazing performance: millions of triangles per frame

• We’ll focus on an abstract version of hardware pipeline

3

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Graphics Pipeline

4

APPLICATION

COMMAND STREAM

GEOMETRY PROCESSING

TRANSFORMED GEOMETRY

RASTERIZATION

FRAGMENTS

FRAGMENT PROCESSING

FRAMEBUFFER IMAGE

DISPLAY

Page 3: Rasterization - cs.cornell.edu

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Primitives• Points• Line segments

– and chains of connected line segments

• Triangles• And that’s all!

– Curves? Approximate them with chains of line segments– Polygons? Break them up into triangles– Curved regions? Approximate them with triangles

• Hardware desire: minimal primitives– simple, uniform, repetitive: good for parallelism– and of course, cyclical; now you can send curves, and the vertex

shader will convert to primitives5

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Rasterization

• First job: enumerate the pixels covered by a primitive– simple, aliased definition: pixels whose centers fall inside

• Second job: interpolate values across the primitive– e.g. colors computed at vertices– e.g. normals at vertices– will see applications later on

6

Page 4: Rasterization - cs.cornell.edu

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Rasterizing lines

• Define line as a rectangle

• Specify by two endpoints

• Ideal image: black inside, white outside

7

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Point sampling

• Approximate rectangle by drawing all pixels whose centers fall within the line

• Problem: sometimes turns on adjacent pixels

8

Page 5: Rasterization - cs.cornell.edu

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Point samplingin action

9

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Bresenham lines (midpoint alg.)

• Point sampling unit width rectangle leads to uneven line width

• Goal: draw thinnest line possible– Define line width parallel

to pixel grid– That is, turn on the single

nearest pixel in each column

– Note that 45º lines are now thinner

10

Page 6: Rasterization - cs.cornell.edu

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12 11

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Algorithms for drawing lines

• line equation:y = b + m x

• Simple algorithm: evaluate line equation per column

• W.l.o.g. x0 < x1;0 ≤ m ≤ 1for x = ceil(x0) to floor(x1) y = b + m*x output(x, round(y))

y = 1.91 + 0.37 x

12

Page 7: Rasterization - cs.cornell.edu

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Bresenham lines (midpoint alg.)

• round (y)?• cutoff at midpt

y = m x + b d = m x + b - y

13

• d(x+1,y+0.5) = m(x + 1) + b – (y+0.5)

• d > 0 ? NE : E

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Optimizing line drawing

• Multiplying and rounding: slow• At each pixel

– only options are E and NE

14

Page 8: Rasterization - cs.cornell.edu

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

• Only need to update d for integer steps in x and y

• Do that with addition• Known as “DDA” (digital

differential analyzer)

Optimizing line drawing

15

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

• d = m(x + 1) + b – y• Only need to update d

for integer steps in x and y

• Now test d against 0.5

Optimizing line drawing

16

Page 9: Rasterization - cs.cornell.edu

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Midpoint line algorithm

x = ceil(x0)y = y0 = round(m*x + b)

output (x,y)d = m*(x + 1) + b – ywhile x < floor(x1) if d > 0.5 y += 1 d –= 1 x += 1 d += m output(x, y)

17

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Midpoint algorithmin action

18

Page 10: Rasterization - cs.cornell.edu

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Linear interpolation

• We often attach attributes to vertices– e.g. computed diffuse color of a hair being drawn using lines– want color to vary smoothly along a chain of line segments

• Basic definition of interpolation

– 1D: f(x) = (1 – α) y0 + α y1

– where α = (x – x0) / (x1 – x0)

• In the 2D case of a line segment, alpha is just the fraction

of the distance from (x0, y0) to (x1, y1)

19

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Linear interpolation

• Pixels are notexactly on the line

• Define 2D functionby projection online– this is linear in 2D– therefore can use

DDA to interpolate

20

Page 11: Rasterization - cs.cornell.edu

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Alternate interpretation

• We are updating d and α as we step from pixel to pixel– d tells us how far from the line we are

α tells us how far along the line we are

• So d and α are coordinates in a coordinate system oriented to the line

21

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Alternate interpretation

• View loop as visitingall pixels the linepasses through

Interpolate d and α for each pixel

Only output frag.if pixel is in band

• This makes linearinterpolation theprimary operation

22

Page 12: Rasterization - cs.cornell.edu

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Pixel-walk line rasterization

x = ceil(x0)y = round(m*x + b)d = m*x + b – youtput (x,y)

while x < floor(x1) if d > 0.5 y += 1; d –= 1 else x += 1; d += m

if –0.5 < d ≤ 0.5 output(x, y)

23

© 2012 Kavita Bala •(with previous instructors James/Marschner)

Cornell CS4620/5620 Fall 2012 • Lecture 12

Midpoint algorithmin action

24