College of Computer and Information Science, Northeastern UniversityApril 17, 20151 CS U540 Computer Graphics Prof. Harriet Fell Spring 2009 Lecture 9.

Slides:



Advertisements
Similar presentations
Polygon Scan Conversion – 11b
Advertisements

SI23 Introduction to Computer Graphics
Computer Graphics Inf4/MSc 1 Computer Graphics Lecture 7 Scanline algorithm and polygon clipping Taku Komura.
Name: ___________________________________ I filled _______________________’s bucket today. I filled a bucket by _________________________ _________________________________________.
College of Computer and Information Science, Northeastern UniversityApril 12, CS G140 Graduate Computer Graphics Prof. Harriet Fell Spring 2007 Lecture.
CS 450: COMPUTER GRAPHICS FILLING POLYGONS SPRING 2015 DR. MICHAEL J. REALE.
Polygon Rasterization
©College of Computer and Information Science, Northeastern UniversityApril 22, CS U540 Computer Graphics Prof. Harriet Fell Spring 2009 Lecture 4.
Convex Hull obstacle start end Convex Hull Convex Hull
Different types of Polygons Simple Convex Simple Concave Non-simple : self-intersecting With holes ConvexConcaveSelf-intersecting.
CPCS 391 Computer Graphics 1 Lecture 5: Polygon Filling
CSCE 441: Computer Graphics Scan Conversion of Polygons
Graphics Programming: Polygon Filling
UMass Lowell Computer Science Advanced Algorithms Computational Geometry Prof. Karen Daniels Spring, 2007 Lecture 3 Chapter 3: 2D Convex Hulls Friday,
CS 248 Assignment 2 Polygon Scan Converter CS248 Presented by Abe Davis Stanford University October 17, 2008.
College of Computer and Information Science, Northeastern UniversityJune 21, CS U540 Computer Graphics Prof. Harriet Fell Spring 2009 Lecture 21.
©College of Computer and Information Science, Northeastern UniversityJune 26, CS U540 Computer Graphics Prof. Harriet Fell Spring 2009 Lecture 11.
TOPIC 4 PART III FILL AREA PRIMITIVES POLYGON FILL AREAS CGMB214: Introduction to Computer Graphics.
1 CSCE 441: Computer Graphics Scan Conversion of Polygons Jinxiang Chai.
College of Computer and Information Science, Northeastern UniversitySeptember 5, CS5310 Graduate Computer Graphics Prof. Harriet Fell Spring 2011.
CGMB 314 Intro to Computer Graphics Fill Area Primitives.
Polygon Scan Conversion and Z-Buffering
Frequency Distributions, Histograms, and Related Topics.
College of Computer and Information Science, Northeastern UniversitySeptember 12, CS U540 Computer Graphics Prof. Harriet Fell Spring 2009 Lecture.
Informationsteknologi Monday, November 26, 2007Computer Graphics - Class 121 Today’s class Drawing lines Bresenham’s algorithm Compositing Polygon filling.
College of Computer and Information Science, Northeastern UniversityOctober 12, CS G140 Graduate Computer Graphics Prof. Harriet Fell Spring 2006.
College of Computer and Information Science, Northeastern UniversityMay 27, CS 4300 Computer Graphics Prof. Harriet Fell Fall 2012 Lecture 9 – September.
Scan Conversion. Last step in the graphics pipeline Efficiency is a central issue Common primitives – Lines (done last class) – Polygons (fill polygons,
College of Computer and Information Science, Northeastern UniversityOctober 31, CS G140 Graduate Computer Graphics Prof. Harriet Fell Spring 2009.
CS 325 Introduction to Computer Graphics 03 / 22 / 2010 Instructor: Michael Eckmann.
Copyright  1999 by James H. Money. All rights reserved. Except as permitted under United States Copyright Act of 1976, no part of this publication may.
Computing & Information Sciences Kansas State University CIS 536/636 Introduction to Computer Graphics Lecture 8 of 41 William H. Hsu Department of Computing.
Introduction to Computer Graphics CS 445 / 645 Lecture 9 Chapter 4: Rasterization L. McMillan MIT notes (Fall ’98)
CSE 421 Algorithms Lecture 15 Closest Pair, Multiplication.
Computer Graphics Filling. Filling Polygons So we can figure out how to draw lines and circles How do we go about drawing polygons? We use an incremental.
Lecture 15: Raster Graphics and Scan Conversion
1 CSCE 441: Computer Graphics Scan Conversion of Polygons Jinxiang Chai.
College of Computer and Information Science, Northeastern UniversityFebruary 27, CS U540 Computer Graphics Prof. Harriet Fell Spring 2009 Lectures.
Kansas State University Department of Computing and Information Sciences CIS 736: Computer Graphics Friday, January 21, 2000 William H. Hsu Department.
Rasterization Overview Raster Display Device. Scan Conversion / Rasterization: converting vector graphics into raster graphics (determining pixels in.
Computer Graphics Lecture 08 Taqdees A. Siddiqi Computer Graphics Filled Area Primitives I Lecture 08 Taqdees A. Siddiqi
Computer Graphics Through OpenGL: From Theory to Experiments, Second Edition Chapter 14.
CS552: Computer Graphics Lecture 16: Polygon Filling.
Computer Graphics Filling.
Introduction to Polygons
CS G140 Graduate Computer Graphics
Basic Raster Graphics Algorithms for Drawing 2D Primitives
Computer Graphics Filled Area Primitives II Lecture 09 Taqdees A
Prof. Harriet Fell Spring 2007 Lecture 5 – January 17, 2006
Polygon Filling Algorithms
Computer Graphics Filling & Color.
Prof. Harriet Fell Spring 2007 Lecture 9 – January 29, 2007
Punya Biswas Lecture 15 Closest Pair, Multiplication
CS G140 Graduate Computer Graphics
Prepared by Narendra V G CSE MIT
Richard Anderson Lecture 13 Divide and Conquer
Prof. Harriet Fell Fall 2011 Lecture 9 – September 26, 2011
Prof. Harriet Fell Spring 2006 Lecture 21 – February 28,2007
(c) 2002 University of Wisconsin, CS559
Rasterizing Polygons 2 Lecture 35 Mon, Nov 26, 2007.
CS U540 Computer Graphics Prof. Harriet Fell Spring 2007
Rasterizing Polygons Lecture 29 Wed, Dec 7, 2005.
Computer Science 2 More Trees.
Basic Raster Graphics Algorithms for Drawing 2D Primitives
NOTE.
CS U540 Computer Graphics Prof. Harriet Fell Spring 2007
Where We Stand At this point we know how to: Next thing:
Type to enter a caption. Computer Graphics Week 6 Lecture 1.
CS U540 Computer Graphics Prof. Harriet Fell Spring 2007
Richard Anderson Lecture 13 Divide and Conquer
Presentation transcript:

College of Computer and Information Science, Northeastern UniversityApril 17, CS U540 Computer Graphics Prof. Harriet Fell Spring 2009 Lecture 9 – January 26, 2009

College of Computer and Information Science, Northeastern UniversityApril 17, Today’s Topics Fill: Boundary Fill vs. Polygon Fill 2D Polygon Fill

College of Computer and Information Science, Northeastern UniversityApril 17, Scan Line Polygon Fill

College of Computer and Information Science, Northeastern UniversityApril 17, Parity Check Draw a horizontal half-line from P to the right. Count the number of times the half-line crosses an edge. 1in 4out 7in

College of Computer and Information Science, Northeastern UniversityApril 17, Polygon Data Structure edges xminymax1/m  168/4  (1, 2) (9, 6) xmin = x value at lowest y ymax = highest y Why 1/m? If y = mx + b, x = (y-b)/m. x at y+1 = (y+1-b)/m = (y-b)/m + 1/m.

Polygon Data Structure Edge Table (ET) has a list of edges for each scan line. e1 e2 e3 e4 e5 e6 e7 e8 e9 e10 e  e  e4  e5 6  e3  e7  e  e2  e1  e11 0  e10  e9

College of Computer and Information Science, Northeastern UniversityApril 17, Preprocessing the edges count twice, once for each edge chop lowest pixel to only count once delete horizontal edges For a closed polygon, there should be an even number of crossings at each scan line. We fill between each successive pair.

Polygon Data Structure after preprocessing Edge Table (ET) has a list of edges for each scan line. e1 e2 e3 e4 e5 e6 e7 e8 e9 e10 e  e  e4  e5 6  e3  e7  e  e2  e1  e11 0  e10  e9 e11 7  e3  e4  e5 6  e7  e8 11  e6 10

College of Computer and Information Science, Northeastern UniversityApril 17, The Algorithm 1.Start with smallest nonempty y value in ET. 2.Initialize SLB (Scan Line Bucket) to nil. 3.While current y  top y value: a.Merge y bucket from ET into SLB; sort on xmin. b.Fill pixels between rounded pairs of x values in SLB. c.Remove edges from SLB whose ytop = current y. d.Increment xmin by 1/m for edges in SLB. e.Increment y by 1.

Running the Algorithm e2 e3 e4 e5 e6 e7 e8 e9 e10 e ET  e  e3  e4  e5 6  e7  e  e2  e11 0  e10  e9 xminymax1/m e226-2/5 e31/3 121/3 e4412-2/5 e54130 e66 2/313-4/3 e /2 e81082 e91183/8 e /4 e11642/

College of Computer and Information Science, Northeastern UniversityApril 17, Running the Algorithm e2 e3 e4 e5 e6 e7 e8 e9 e10 e y=0 SCB  114-3/4  1183/8  e9 e /4 11 3/8

College of Computer and Information Science, Northeastern UniversityApril 17, Running the Algorithm e2 e3 e4 e5 e6 e7 e8 e9 e10 e y=1 SLB  26-2/5  642/3  e11 e2 1 3/5 10 1/44-3/4  11 3/8 83/8  e9 e10 6 2/3 9 1/2 11 6/8

College of Computer and Information Science, Northeastern UniversityApril 17, Running the Algorithm e2 e3 e4 e5 e6 e7 e8 e9 e10 e y=2 SLB  1 3/56-2/5  6 2/342/3  e11 e2 9 1/24-3/4  11 6/883/8  e9 e /8 8 3/4 7 1/3 1 1/5

College of Computer and Information Science, Northeastern UniversityApril 17, Running the Algorithm e3 e4 e5 e6 e7 e8 e9 e y=3 SLB  1 1/56-2/5  7 1/342/3  e11 e2 8 3/44-3/4  12 1/883/8  e9 e / /5 e11e2

College of Computer and Information Science, Northeastern UniversityApril 17, Running the Algorithm e3 e4 e5 e6 e7 e8 e y=4 SLB  4/56-2/5  842/3  e11 e2 84-3/4  12 4/883/8  e9 e10 e11e2 e9 Remove these edges.

College of Computer and Information Science, Northeastern UniversityApril 17, Running the Algorithm e3 e4 e5 e6 e7 e y=4 SLB  4/56-2/5  e2 12 4/883/8  e9 12 7/8 2/5 e2e11 e10 e9 e11 and e10 are removed.

College of Computer and Information Science, Northeastern UniversityApril 17, Running the Algorithm e3 e4 e5 e6 e7 e y=5 SLB  2/56-2/5  e2 12 7/883/8  e9 13 2/8 0 e2e11 e10 e9

College of Computer and Information Science, Northeastern UniversityApril 17, Running the Algorithm e3 e4 e5 e6 e7 e y=6 SLB  06-2/5  e /2  e7 e2e11 e10 e9 Remove this edge  e8 13 2/883/8  e9 9 1/ /8

Running the Algorithm e3 e4 e5 e6 e7 e y=7 SLB  4130  e5 9 1/210-1/2  e7 e2e11 e10 e  e8 13 5/883/8  e9 Add these edges /5  e4 1/3121/3  e3