Solid Modeling

26
Graphics cgvr.korea.ac.kr Graphics Lab @ Korea University Solid Modeling 고고고고고 고고고 고고고고 고고고

description

Solid Modeling. 고려대학교 컴퓨터 그래픽스 연구실. Solid Modeling. Represent Solid Interiors of Objects Surface may not be described explicitly. Motivation. Some Acquisition Methods Generate Solids Example: CAT scan. Motivation. Some Applications Require Solids Example: CAD/CAM. Motivation. - PowerPoint PPT Presentation

Transcript of Solid Modeling

Page 1: Solid Modeling

Graphics

cgvr.korea.ac.kr Graphics Lab @ Korea University

Solid Modeling

고려대학교 컴퓨터 그래픽스 연구실

Page 2: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Solid Modeling

Represent Solid Interiors of Objects Surface may not be described explicitly

Page 3: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Motivation

Some Acquisition Methods Generate Solids Example: CAT scan

Page 4: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Motivation

Some Applications Require Solids Example: CAD/CAM

Page 5: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Motivation

Some Algorithms Require Solids Example: ray tracing with refraction

Page 6: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Solid Modeling Representation

Voxels Quadtrees & Octrees Binary Space Partitions Constructive Solid Geometry

Page 7: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Voxels

Partition Space into Uniform Grid Grid cells are called a voxels (like pixels)

Store Properties of Solid Object with Each Voxel Occupancy Color Density Temperature Etc.

Page 8: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Voxel Acquisition

Scanning Devices MRI CAT

Simulation FEM

Page 9: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Voxel Storage

O(n3) Storage for n x n x n Grid 1 billion voxels for 1000 x 1000 x 1000

Page 10: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Voxel Boolean Operations

Compare Objects Voxel by Voxel

Page 11: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Voxel Display

Isosurface Rendering Render surfaces bounding volumetric regions of cons

tant value (e.g., density)

Page 12: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Voxel Display

Slicing Draw 2D image resulting from intersecting voxels wit

h a plane

Page 13: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Voxel Display

Ray Casting Integrate density along rays through pixels

Page 14: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Voxels

Advantages Simple, intuitive, unambiguous Same complexity for all objects Natural acquisition for some applications Trivial boolean operations

Disadvantages Approximate Large storage requirements Expensive display

Page 15: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Solid Modeling Representation

Voxels Quadtrees & Octrees Binary Space Partitions Constructive Solid Geometry

Page 16: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Quadtrees & Octrees

Refine Resolution of Voxels Hierarchically More concise and efficient for non-uniform objects

Uniform Voxel Quadtree

Page 17: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Quadtree Boolean Operations

Page 18: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Solid Modeling Representation

Voxels Quadtrees & Octrees Binary Space Partitions Constructive Solid Geometry

Page 19: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Binary Space Partitions (BSPs)

Recursive Partition of Space by Planes Mark leaf cells as inside or outside object

a

bcd

efg

Object

a

bcd

efg

Binary Spatial Partition

1

2

3

45

6

7

12

a

3

bc

4

d

56

e

7

f

BSP Tree

Page 20: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

BSP Fundamentals

Single Geometric Operation Partition a convex region by a hyperplane

Single Combinatorial Operation Two child nodes added as leaf nodes

Page 21: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

BSP Display

Visibility Ordering Determine on which side of plane the viewer lies

Near-subtree -> polygons on split -> far-subtree

A

B

C

o2

o1

o3

o4

Viewer

Partitioning TreeA

B C

o1 o2 o3 o43rd 4th 1st 2nd

Viewer

Page 22: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Solid Modeling Representation

Voxels Quadtrees & Octrees Binary Space Partitions Constructive Solid Geometry

Page 23: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Constructive Solid Geometry (CSG) Represent Solid Object as Hierarchy of Boolean

Operations Union Intersection Difference

Page 24: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

CSG Acquisition

Interactive Modeling Programs CAD/CAM

Page 25: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

CSG Display & Analysis

Ray Casting

Union

Circle Box

Page 26: Solid Modeling

cgvr.korea.ac.kr

CGVR

Graphics Lab @ Korea University

Summary

Voxels Octree BSP CSGNo No Some SomeNo No No YesNo No Yes Yes

Some Some No SomeYes Yes Yes No

Yes Yes Yes Yes

No No Yes No

AccurateConciseAffine InvariantEasy AcquisitionGuaranteed ValidityEfficient Boolean OperationsEfficient Display