Lecture 13/14 Geometric Modeling Flashcards
What are the three most common types of Geometric models?
- Solid - implicit
- Surface - parametric
- Voxel - explicit
How does solid modeling work?
Uses sets of points / “chunks” of 3D space.
When Rendering Solid Models, what is the ray casting process?
What are the surface model formulas?
Why are triangle meshes useful for surface texturing?
Triangle meshes are very common
Simplicity and generality: just a set of triangles (vertices + faces)
Efficiently rendered by graphics hardware (three vertices on a plane)
Output of most 3D acquisition tools (3D scanners)
What are some methods of Surface Model Rendering
Scan Conversion (this unit)
Ray Tracing
Radiosity
Photon-mapping
What are the pros and cons of Scan Conversion (this unit) as a method of surface model rendering?
+ Fast
- Limited realism
What are the pros and cons of Ray Tracing
+ Realistic
- Slower
-/+ Leaves a glossy finish
What are the pros and cons of Radiosity
+ Models ambient light very well
- Slower
What is photon-mapping?
Modern method – combines ray-tracing and radiosity
What are voxels?
Voxels are “3D” pixels – cubes, not squares
- f(x,y,z) = some value, possibly a vector of values , (eg. rgb)
- Used for modelling, (3D) textures
- Volume rendering (or fit a surface)
What are particle models?
A bunch of “points”
- But the points be any shape
…flocks of birds (boids)
- Fireworks
- Can be used for quick ad-hoc rendering
What is Model acquisition?
The process of getting geometric models into a computer
… this can be done by sensors and scanning
What are the benefits of using meshes?
Easy to display
…e.g. looping over vertices for fast drawing
Easy to access (instant access to neighbours)
…given a triangle, what are the adjacent triangles?
…given an edge, which two triangles share it?
…given a vertex, which faces/edges share it?
Easy to edit (add/delete vertices, faces)
What is needed from a data structure for a mesh?
What we need from data structure:
Representation for faces, edge, vertex and their relationship
What is the Face-vertex data structure?
What are the pros and cons of a Face-edge-vertex data structure?
+ Store all relationships between faces, vertices and edges
+ Complete representation(everything easily accessible)
- But over-represents information(stores highly redundant information)
What is the graphics pipeline?
What are the details of stage 1 of the graphics pipeline?
Stage 1: Vertex processing
-Applies transformation from object space to clip (camera) space
- Input: vertex data(position, normal, colour etc.)
- Output: transformed vertices (homogeneous), colours etc.
- Pass along material and shading data (to fragment processing)
What are the details of stage 2 of the graphics pipeline?
Stage 2: Clipping and rasterisation
- Turns sets of vertices into primitives and fills them in
- Input: vertices in clip (camera) space, colours, etc.
- Output: set of fragments with interpolated data (3D positions, depth, normals etc.)
How can a vertex normal be obtained?
What are the details of stage 3 of the graphics pipeline?
Stage 3: Fragment processing
Compute final fragment colours and depth
- Depth often untouched
- Lots of texture mapping (see later)
- Final lighting computations (see later)
INPUT: fragments w/ interpolated data
OUTPUT: final colour and depth
Explain Lighting with flat shading, referencing the triangle normal
Shade using the real normal of the triangle
- Piecewise constant (flat) and faceted look
Explain Lighting – Gouraud shading, referencing the triangle normal
Compute shading at vertex position, using vertex normals
- Interpolate colours smoothly over the triangle
Explain Lighting – Phong shading, referencing the triangle normal
Interpolate normals per pixel, then compute shading
- Much better highlights than Gouraud shading
(left - right: flat, gourad, phong)
Explain stage 4 of the graphics pipeline
Stage 4: Framebuffer processing
Hidden surface elimination:
- Decides which surfaces are visible
framebuffer blending:
- Compose transparent surfaces(if necessary)
INPUT: fragment colours & depth
OUTPUT: final image
Explain Hidden Surface Removal (Painter’s Algorithm)
Draw objects from back to front, ‘overpainting’ the framebuffer
- Simplest way to handle hidden surfaces
- May do a lot of useless work (overpainting hidden surfaces)
- Not all surfaces can be sorted !
Explain the purpose of the z-buffer
Explain the process of Hidden Surface Removal: The z-buffer
draw in any order and keep track of closest object
allocate depth (z) buffer to store closest depth so far for each pixel
when drawing an object, compare its depth to depth buffer value:
if less (new object is closer): update both colour framebuffer and depth buffer
if greater (new object is occluded): discard object
finish stage 2 flashcards … slide 16 - 21
When testing each end point against all frustrum planes, when is the line rejected?
- Both endpoints are outside and no crossing, reject the line.
When testing each end point against all frustrum planes, when is the line fully accepted?
- Both end points are inside, accept the whole line,
When testing each end point against all frustrum planes, when is the line clipped?
- One end point inside, other outside, clip the line,
- Both outside but line crosses frustrum, clip the line,
When clipping objects (stage 2), when are objects culled?
Full objects are removed (culled) when not in view of frustum (behind the eye).
These invisible primitives are removed for efficiency, as they skip later pipeline stages.
What is point-plane clipping:
positive dot n * u > 0 product means on the “outside”
Test against all 6 frustrum planes.
What is Polygon clipping?
Convex polygons are similar to line clipping:
Clip each point in sequence
- Remove outside points
- Create new points on boundary
During the rasterization process, what are the two ways to decide which pixels to ‘turn on’?
- Aliased Boundry: pixel is either in the primitive or not.
- Anti-aliasing… smoothing
What does the rasterization step do in the graphics pipeline?
Approximates primitives into pixels(centred at integer coordinates)
What are the steps of rasterization?
- Determine which pixels to turn on:
Input: vertex position in homogeneous coordinates - interpolate values across primitive
e.g. colour, normals, position, depth at vertices
Input: any vertex property
If two triangles overlap, which dominates the pixel during triangle rasterization?
Triangle rasterization: Scan Conversion
The pixel covering the pixel center dominates