Clipping University of British Columbia CPSC 314 Computer Graphics

Slides:



Advertisements
Similar presentations
Computer Graphics - Rasterization -
Advertisements

Rezanje črt in poligonov. World window & viewport window viewport screen window world window.
Computer Graphics CLIPPING.
CS 352: Computer Graphics Chapter 7: The Rendering Pipeline.
10/10/02 (c) 2002 University of Wisconsin, CS 559 Last Time Finished viewing: Now you know how to: –Define a region of space that you wish to view – the.
CS 551 / 645: Introductory Computer Graphics Clipping Lines and Polygons.
CS 445 / 645 Introduction to Computer Graphics Lecture 9 Clipping Clipping.
Dr. Scott Schaefer Clipping Lines. 2/94 Why Clip? We do not want to waste time drawing objects that are outside of viewing window (or clipping window)
Computer Graphics Viewing.
March 1, 2009Dr. Muhammed Al-Mulhem1 ICS 415 Computer Graphics Clipping Dr. Muhammed Al-Mulhem March 1, 2009 Dr. Muhammed Al-Mulhem March 1, 2009.
University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2007 Tamara Munzner Clipping Week 8, Wed Mar.
University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2007 Tamara Munzner Clipping II, Hidden Surfaces.
University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2005 Tamara Munzner Interpolation Clipping.
Informationsteknologi Thursday, November 22, 2007Computer Graphics - Class 111 Today’s class Clipping Parametric and point-normal form of lines Intersecting.
Vertices and Fragments I CS4395: Computer Graphics 1 Mohan Sridharan Based on slides created by Edward Angel.
University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2010 Tamara Munzner Advanced Rendering II,
University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2007 Tamara Munzner Advanced Rendering III,
Texturing, Clipping Week 9, Mon 27 Oct 2003
1 CSCE 441 Computer Graphics: Clipping Lines Jinxiang Chai.
1 Angel: Interactive Computer Graphics 5E © Addison-Wesley 2009 Clipping.
1 Angel: Interactive Computer Graphics 4E © Addison-Wesley 2005 Implementation I Ed Angel Professor of Computer Science, Electrical and Computer Engineering,
Graphics Pipeline Clipping CMSC 435/634. Graphics Pipeline Object-order approach to rendering Sequence of operations – Vertex processing – Transforms.
2/26/04© University of Wisconsin, CS559 Spring 2004 Last Time General Orthographic Viewing –Specifying cameras in world coordinates –Building world  view.
UBI 516 Advanced Computer Graphics Two Dimensional Viewing ( Chapter 6 ) Aydın Öztürk Two Dimensional.
2-Dimension Viewing and Clipping
University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2010 Tamara Munzner Clipping II, Hidden Surfaces.
Clipping: Clipping is a process of dividing an object into visible and invisible positions and displaying the visible portion and discarding the invisible.
Objectives Introduce basic implementation strategies Clipping Scan conversion.
Clipping Aaron Bloomfield CS 445: Introduction to Graphics Fall 2006 (Slide set originally by David Luebke)
CS 480/680 Computer Graphics Shading in OpenGL Dr. Frederick C Harris, Jr. Fall 2013.
CSE Real Time Rendering Week 9. Post Geometry Shaders Courtesy: E. Angel and D. Shreiner – Interactive Computer Graphics 6E © Addison-Wesley 2012.
Windows, Viewports, and Clipping
Basic Perspective Projection Watt Section 5.2, some typos Define a focal distance, d, and shift the origin to be at that distance (note d is negative)
University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2013 Tamara Munzner Rasterization.
Implementation of a Renderer Consider Programs are processd by the system line & polygon, outside the view volume Efficiently Understanding of the implementation.
1 Computer Graphics Clipping Fall FCC Line Clipping What happens when one or both endpoints of a line segment are not inside the specified drawing.
Computer Graphics Lecture 20 Fasih ur Rehman. Last Class Clipping – What is clipping – Why we do clipping – How clipping is done.
1Computer Graphics Implementation 1 Lecture 15 John Shearer Culture Lab – space 2
Computer Graphics Viewing. 2 of 30 Viewing in 2D Window in world coordinates. 45  250  Viewport in Device coords 250 x 250 Pixels.
Lecture 9 From Vertices to Fragments. Objectives Introduce basic implementation strategies Clipping Rasterization hidden-surface removal.
Chapter 71 Computer Graphics - Chapter 7 From Vertices to Fragments Objectives are: How your program are processed by the system that you are using, Learning.
Two-Dimensional Viewing Hearn & Baker Chapter 6
CENG 538 Advanced Graphics and UIs
Computer Graphics Clipping.
Computer Graphics CC416 Week 13 Clipping.
Transformations contd.
CS 551 / 645: Introductory Computer Graphics
Computer Graphics Shading in OpenGL
Clipping Aaron Bloomfield CS 445: Introduction to Graphics Fall 2006
CSCE 441 Computer Graphics: Clipping Polygons Jinxiang Chai
Concepts, algorithms for clipping
Implementation I Ed Angel
Graphics Pipeline Clipping
3D Rendering Pipeline Hidden Surface Removal 3D Primitives
WINDOWING AND CLIPPING
Clipping Computer Graphics Cohen Sutherland Algorithm (Line)
CSCE 441 Computer Graphics: Clipping Lines Jinxiang Chai
CSCE 441 Computer Graphics: Clipping Polygons Jinxiang Chai
CSCE 441 Computer Graphics: Clipping Lines Jinxiang Chai
WINDOWING AND CLIPPING
Lecture 13 Clipping & Scan Conversion
CSCE 441 Computer Graphics: Clipping Polygons Jinxiang Chai
Joshua Barczak CMSC 435 UMBC
Segment Clipping Simple algorithm. For each segment compute the intersection with the four sides of the rectangle, and then determine which sub-segment.
© University of Wisconsin, CS559 Fall 2004
Clipping Polygons Dr. Scott Schaefer.
Clipping Clipping Sutherland-Hodgman Clipping
Computer Graphics Viewing. 2 of 30 Viewing in 2D Window in world coordinates. 45  250  Viewport in Device coords 250 x 250 Pixels.
Implementation I Ed Angel Professor Emeritus of Computer Science
COMPUTER GRAPHICS Clipping
Presentation transcript:

Clipping University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2013 Tamara Munzner Clipping http://www.ugrad.cs.ubc.ca/~cs314/Vjan2013

Reading for Clipping FCG Sec 8.1.3-8.1.6 Clipping FCG Sec 8.4 Culling (12.1-12.4 2nd ed)

Clipping

Rendering Pipeline Geometry Database Model/View Transform. Lighting Perspective Clipping Scan Conversion Depth Test Texturing Blending Frame- buffer

Next Topic: Clipping in general, this assumption will not hold: we’ve been assuming that all primitives (lines, triangles, polygons) lie entirely within the viewport in general, this assumption will not hold:

Clipping analytically calculating the portions of primitives within the viewport

Why Clip? bad idea to rasterize outside of framebuffer bounds also, don’t waste time scan converting pixels outside window could be billions of pixels for very close objects!

Line Clipping 2D determine portion of line inside an axis-aligned rectangle (screen or window) 3D determine portion of line inside axis-aligned parallelpiped (viewing frustum in NDC) simple extension to 2D algorithms

Clipping naïve approach to clipping lines: for each line segment for each edge of viewport find intersection point pick “nearest” point if anything is left, draw it what do we mean by “nearest”? how can we optimize this? A B C D

Trivial Accepts big optimization: trivial accept/rejects Q: how can we quickly determine whether a line segment is entirely inside the viewport? A: test both endpoints

Trivial Rejects Q: how can we know a line is outside viewport? A: if both endpoints on wrong side of same edge, can trivially reject line

Clipping Lines To Viewport combining trivial accepts/rejects trivially accept lines with both endpoints inside all edges of the viewport trivially reject lines with both endpoints outside the same edge of the viewport otherwise, reduce to trivial cases by splitting into two segments

Cohen-Sutherland Line Clipping outcodes 4 flags encoding position of a point relative to top, bottom, left, and right boundary OC(p1)=0010 OC(p2)=0000 OC(p3)=1001 1010 1000 1001 y=ymax p3 p1 0010 0000 0001 p2 y=ymin 0110 0100 0101 x=xmin x=xmax

Cohen-Sutherland Line Clipping assign outcode to each vertex of line to test line segment: (p1,p2) trivial cases OC(p1)== 0 && OC(p2)==0 both points inside window, thus line segment completely visible (trivial accept) (OC(p1) & OC(p2))!= 0 there is (at least) one boundary for which both points are outside (same flag set in both outcodes) thus line segment completely outside window (trivial reject)

Cohen-Sutherland Line Clipping if line cannot be trivially accepted or rejected, subdivide so that one or both segments can be discarded pick an edge that the line crosses (how?) intersect line with edge (how?) discard portion on wrong side of edge and assign outcode to new vertex apply trivial accept/reject tests; repeat if necessary

Cohen-Sutherland Line Clipping if line cannot be trivially accepted or rejected, subdivide so that one or both segments can be discarded pick an edge that the line crosses check against edges in same order each time for example: top, bottom, right, left E D C B A

Cohen-Sutherland Line Clipping intersect line with edge A B D E C

Cohen-Sutherland Line Clipping discard portion on wrong side of edge and assign outcode to new vertex apply trivial accept/reject tests and repeat if necessary D C B A

Viewport Intersection Code (x1, y1), (x2, y2) intersect vertical edge at xright yintersect = y1 + m(xright – x1) m=(y2-y1)/(x2-x1) (x1, y1), (x2, y2) intersect horiz edge at ybottom xintersect = x1 + (ybottom – y1)/m (x2, y2) (x1, y1) xright (x2, y2) ybottom (x1, y1)

Cohen-Sutherland Discussion key concepts use opcodes to quickly eliminate/include lines best algorithm when trivial accepts/rejects are common must compute viewport clipping of remaining lines non-trivial clipping cost redundant clipping of some lines basic idea, more efficient algorithms exist

Line Clipping in 3D approach clip against parallelpiped in NDC after perspective transform means that clipping volume always the same xmin=ymin= -1, xmax=ymax= 1 in OpenGL boundary lines become boundary planes but outcodes still work the same way additional front and back clipping plane zmin = -1, zmax = 1 in OpenGL

Polygon Clipping objective 2D: clip polygon against rectangular window or general convex polygons extensions for non-convex or general polygons 3D: clip polygon against parallelpiped

Polygon Clipping not just clipping all boundary lines may have to introduce new line segments

Why Is Clipping Hard? what happens to a triangle during clipping? some possible outcomes: how many sides can result from a triangle? seven triangle to triangle triangle to quad triangle to 5-gon

Why Is Clipping Hard? a really tough case: concave polygon to multiple polygons

Polygon Clipping classes of polygons triangles convex concave holes and self-intersection

Sutherland-Hodgeman Clipping basic idea: consider each edge of the viewport individually clip the polygon against the edge equation after doing all edges, the polygon is fully clipped

Sutherland-Hodgeman Clipping basic idea: consider each edge of the viewport individually clip the polygon against the edge equation after doing all edges, the polygon is fully clipped

Sutherland-Hodgeman Clipping basic idea: consider each edge of the viewport individually clip the polygon against the edge equation after doing all edges, the polygon is fully clipped

Sutherland-Hodgeman Clipping basic idea: consider each edge of the viewport individually clip the polygon against the edge equation after doing all edges, the polygon is fully clipped

Sutherland-Hodgeman Clipping basic idea: consider each edge of the viewport individually clip the polygon against the edge equation after doing all edges, the polygon is fully clipped

Sutherland-Hodgeman Clipping basic idea: consider each edge of the viewport individually clip the polygon against the edge equation after doing all edges, the polygon is fully clipped

Sutherland-Hodgeman Clipping basic idea: consider each edge of the viewport individually clip the polygon against the edge equation after doing all edges, the polygon is fully clipped

Sutherland-Hodgeman Clipping basic idea: consider each edge of the viewport individually clip the polygon against the edge equation after doing all edges, the polygon is fully clipped

Sutherland-Hodgeman Clipping basic idea: consider each edge of the viewport individually clip the polygon against the edge equation after doing all edges, the polygon is fully clipped

Sutherland-Hodgeman Algorithm input/output for whole algorithm input: list of polygon vertices in order output: list of clipped polygon vertices consisting of old vertices (maybe) and new vertices (maybe) input/output for each step input: list of vertices output: list of vertices, possibly with changes basic routine go around polygon one vertex at a time decide what to do based on 4 possibilities is vertex inside or outside? is previous vertex inside or outside?

Clipping Against One Edge p[i] inside: 2 cases inside outside inside outside p[i-1] p[i-1] p p[i] p[i] output: p[i] output: p, p[i]

Clipping Against One Edge p[i] outside: 2 cases inside outside inside outside p[i-1] p[i] p p[i] p[i-1] output: p output: nothing

Clipping Against One Edge clipPolygonToEdge( p[n], edge ) { for( i= 0 ; i< n ; i++ ) { if( p[i] inside edge ) { if( p[i-1] inside edge ) output p[i]; // p[-1]= p[n-1] else { p= intersect( p[i-1], p[i], edge ); output p, p[i]; } } else { // p[i] is outside edge if( p[i-1] inside edge ) { p= intersect(p[i-1], p[I], edge ); output p;

Sutherland-Hodgeman Example inside outside p7 p6 p5 p3 p4 p2 p0 p1

Sutherland-Hodgeman Discussion similar to Cohen/Sutherland line clipping inside/outside tests: outcodes intersection of line segment with edge: window-edge coordinates clipping against individual edges independent great for hardware (pipelining) all vertices required in memory at same time not so good, but unavoidable another reason for using triangles only in hardware rendering