1.2 Surface Representation & Data Structures

Total Page:16

File Type:pdf, Size:1020Kb

1.2 Surface Representation & Data Structures Spring 2017 CSCI 621: Digital Geometry Processing 1.2 Surface Representation & Data Structures Hao Li http://cs621.hao-li.com 1 Administrative • No class next Tuesday, due to Siggraph deadline • Introduction to first programming exercise on Jan 24th Siggraph Deadline 2013@ILM! 2 Last Time Geometry Processing Reconstruction Rendering Capture Analysis Reproduction Manipulation 3 Geometric Representations point based quad mesh triangle mesh implicit surfaces / particles volumetric tetrahedrons4 Geometric Representations point based quad mesh triangle mesh Surface Representations implicit surfaces / particles volumetric tetrahedrons5 High Resolution 6 Large scenes 7 Outline • Parametric Approximations • Polygonal Meshes • Data Structures 8 Parametric Representation Surface is the range of a function f : Ω IR 2 IR 3, = f(Ω) ⊂ ⇥ SΩ 2D example: A Circle f : [0, 2π] IR 2 → r cos(t) r f(t)= r sin(t) ⇥ 9 Parametric Representation Surface is the range of a function f : Ω IR 2 IR 3, = f(Ω) ⊂ ⇥ SΩ 2D example: Island coast line f : [0, 2π] IR 2 → r cos(? t) f(t)= r sin(? t) ⇥ 10 Piecewise Approximation Surface is the range of a function f : Ω IR 2 IR 3, = f(Ω) ⊂ ⇥ SΩ 2D example: Island coast line f : [0, 2π] IR 2 → r cos(? t) f(t)= r sin(? t) ⇥ 11 Polynomial Approximation Polynomials are computable functions p p i f(t)= ci t = c˜i φi(t) i=0 i=0 Taylor expansion up to degree p p 1 g(h)= g(i)(0) hi + O hp+1 i! i=0 ⇤ ⇥ Error for approximation g by polynomial f f(t )=g(t ) , 0 t < <t h i i ⇥ 0 ··· p ⇥ p 1 f(t) g(t) max f (p+1) (t t )=O h(p+1) | − | ⇥ (p + 1)! − i i=0 ⇤ ⇥ 12 Polynomial Approximation Approximation error is O(hp+1) Improve approximation quality by • increasing p … higher order polynomials • decreasing h … shorter / more segments Issues (p+1) • smoothness of the target data ( max f ( t ) ) t • smoothness condition between segments 13 Polygonal Meshes Polygonal meshes are a good compromise 2 • Piecewise linear approximation → error is O(h ) 3 6 12 24 25% 6.5% 1.7% 0.4% 14 Polygonal Meshes Polygonal meshes are a good compromise 2 • Piecewise linear approximation → error is O(h ) • Error inversely proportional to #faces 15 Polygonal Meshes Polygonal meshes are a good compromise 2 • Piecewise linear approximation → error is O(h ) • Error inversely proportional to #faces • Arbitrary topology surfaces 16 Polygonal Meshes Polygonal meshes are a good compromise 2 • Piecewise linear approximation → error is O(h ) • Error inversely proportional to #faces • Arbitrary topology surfaces • Piecewise smooth surfaces 17 Polygonal Meshes Polygonal meshes are a good compromise 2 • Piecewise linear approximation → error is O(h ) • Error inversely proportional to #faces • Arbitrary topology surfaces • Piecewise smooth surfaces • Adaptive sampling 18 Polygonal Meshes Polygonal meshes are a good compromise 2 • Piecewise linear approximation → error is O(h ) • Error inversely proportional to #faces • Arbitrary topology surfaces • Piecewise smooth surfaces • Adaptive sampling • Efficient GPU-based rendering/processing 19 Outline • Parametric Approximations • Polygonal Meshes • Data Structures 20 Graph Definitions B A • Graph {V,E} E D F C I H G J K 21 Graph Definitions B A • Graph {V,E} E D F • Vertices V = {A,B,C,…,K} C I H G J K 22 Graph Definitions B A • Graph {V,E} E D F • Vertices V = {A,B,C,…,K} C • Edges E = {(AB),(AE),(CD),…} I H G J K 23 Graph Definitions B A • Graph {V,E} E D F • Vertices V = {A,B,C,…,K} C • Edges E = {(AB),(AE),(CD),…} I H • Faces F = {(ABE),(EBF),(EFIH),…} G J K 24 Graph Definitions B A E Vertex degree or valence: D F C number of incident edges I • deg(A) = 4 H • deg(E) = 5 G J K 25 Connectivity Connected: B A Path of edges connecting every two vertices E D F C I H G J K 26 Connectivity Connected: B Path of edges connecting A every two vertices E D F C Subgraph: I Graph {V’,E’} is a subgraph of graph H {V,E} if V’ is a subset of V and E’ is a G subset of E incident on V’. J K 27 Connectivity Connected: B Path of edges connecting A every two vertices E D F C Subgraph: I Graph {V’,E’} is a subgraph of graph H {V,E} if V’ is a subset of V and E’ is a G subset of E incident on V’. J K 28 Connectivity Connected: B Path of edges connecting A every two vertices E D F C Subgraph: I Graph {V’,E’} is a subgraph of graph H {V,E} if V’ is a subset of V and E’ is a G subset of E incident on V’. K J Connected Components: Maximally connected subgraph 29 Connectivity Connected: B Path of edges connecting A every two vertices E D F C Subgraph: I Graph {V’,E’} is a subgraph of graph H {V,E} if V’ is a subset of V and E’ is a G subset of E incident on V’. K J Connected Components: Maximally connected subgraph 30 Graph Embedding d Embedding: Graph is embedded in R , if d each vertex is assigned a position in R . 2 3 Embedding in R Embedding in R 31 Graph Embedding d Embedding: Graph is embedded in R , if d each vertex is assigned a position in R . 3 Embedding in R 32 Planar Graph Planar Graph Graph whose vertices and edges can be 2 embedded in R such that its edges do not intersect Straight Line Planar Graph Plane Graph Plane Graph 33 Triangulation Triangulation: B Straight line plane graph where every A face is a triangle E D F C Why? • simple homogenous data structure I H • efficient rendering G • simplifies algorithms • by definition, triangle is planar K J • any polygon can be triangulated 34 Mesh • Mesh: straight-line graph 3 embedded in R • Boundary edge: adjacent to exactly 1 face • Regular edge: adjacent to exactly 2 faces • Singular edge: adjacent to more than 2 faces • Closed mesh: mesh with no boundary edges 35 Polygon A geometric graph Q =(V,E) d with V = p 0 , p 1 ,..., p n 1 in R , d 2 { − } ≥ and E = (p0, p1) ...(pn 2, pn 1) { − − } is called a polygon A polygon is called • flat, if all edges are on a plane • closed, if p0 = pn 1 − 36 While digital artists call it Wireframe, … 37 Polygonal Mesh A set M of finite number of closed polygons Q i if: • Intersection of inner polygonal areas is empty • Intersection of 2 polygons from M is either empty, a point p P or an edge e E 2 2 • Every edge e E belongs to at least one polygon 2 • The set of all edges which belong only to one polygon are called edges of the polygonal mesh and are either empty or form a single closed polygon 38 Polygonal Mesh Notation = ( v , e , f ) M { i} { j} { k} geometry v R3 i ∈ 39 Polygonal Mesh Notation = ( v , e , f ) M { i} { j} { k} geometry v R3 i ∈ topology e , f R3 i i ⊂ 40 Global Topology: Genus • Genus: Maximal number of closed simple cutting curves that do not disconnect the graph into multiple components. • Or half the maximal number of closed paths that do no disconnect the mesh • Informally, the number of holes or handles Genus 0 Genus 1 Genus 2 Genus 3 41 Euler Poincaré Formula • For a closed polygonal mesh of genus g , the relation of the number V of vertices, E of edges, and F of faces is given by Euler’s formula: V E + F = 2(1 g) − − • The term 2(1 g ) is called the Euler characteristic χ − 42 Euler Poincaré Formula V E + F = 2(1 g) − − 4 6 + 4 = 2(1 0) − − 43 Euler Poincaré Formula V E + F = 2(1 g) − − 16 32 + 16 = 2(1 1) − − 44 Average Valence of Closed Triangle Mesh Theorem: Average vertex degree in a closed manifold triangle mesh is ~6 Proof: Each face has 3 edges and each edge is counted twice: 3F = 2E by Euler’s formula: V+F-E = V+2E/3-E = 2-2g Thus E = 3(V-2+2g) So average degree = 2E/V = 6(V-2+2g)/V ~6 for large V 45 Euler Consequences Triangle mesh statistics • F 2V ⇡ • E 3V ⇡ • Average valence = 6 Quad mesh statistics • F V ⇡ • E 2V ⇡ • Average valence = 4 46 Euler Characteristic Sphere Torus Moebius Strip Klein Bottle χ =2 χ =0 χ =0 χ =0 47 How many pentagons? 48 How many pentagons? Any closed surface of genus 0 consisting only of hexagons and pentagons and where every vertex has valence 3 must have exactly 12 pentagons 49 Two-Manifold Surfaces Local neighborhoods are disk-shaped f(D✏[u, v]) = Dδ[f(u, v)] Guarantees meaningful neighbor enumeration • required by most algorithms Non-manifold Examples: 50 Outline • Parametric Approximations • Polygonal Meshes • Data Structures 51 Mesh Data Structures • How to store geometry & connectivity? • compact storage and file formats • Efficient algorithms on meshes • Time-critical operations • All vertices/edges of a face • All incident vertices/edges/faces of a vertex 52 Data Structures What should be stored? • Geometry: 3D vertex coordinates • Connectivity: Vertex adjacency • Attributes: • normals, color, texture coordinates, etc. • Per Vertex, per face, per edge 53 Data Structures What should it support? • Rendering • Queries • What are the vertices of face #3? • Is vertex #6 adjacent to vertex #12? • Which faces are adjacent to face #7? • Modifications • Remove/add a vertex/face • Vertex split, edge collapse 54 Data Structures Different Data Structures: • Time to construct (preprocessing) • Time to answer a query • Random access to vertices/edges/faces • Fast mesh traversal • Fast Neighborhood query • Time to perform an operation • split/merge • Space complexity • Redundancy 55 Data Structures Different Data Structures: • Different topological data storage • Most important ones are face and edge-based (since they encode connectivity) • Design decision ~ memory/speed trade-off 56 Face Set (STL) Face: Triangles • 3 vertex positions x11 y11 z11 x12 y12 z12 x13 y13 z13 x21 y21 z21 x22 y22 z22 x23 y23 z23 ..
Recommended publications
  • Studio Toolkit for Flexibles 14 User Guide
    Studio Toolkit for Flexibles 14 User Guide 06 - 2015 Studio Toolkit for Flexibles Contents 1. Copyright Notice.......................................................................................................................................................................... 4 2. Introduction.....................................................................................................................................................................................6 2.1 About Studio....................................................................................................................................................................... 6 2.2 Workflow and Concepts................................................................................................................................................. 7 2.3 Quick-Start Tutorial...........................................................................................................................................................8 3. Creating a New Bag.................................................................................................................................................................12 3.1 Pillow Bags........................................................................................................................................................................13 3.1.1 Panel Order and Fin vs. Lap Seals.............................................................................................................14 3.2 Gusseted Bags.................................................................................................................................................................15
    [Show full text]
  • Compression and Streaming of Polygon Meshes
    Compression and Streaming of Polygon Meshes by Martin Isenburg A dissertation submitted to the faculty of the University of North Carolina at Chapel Hill in partial fulfillment of the requirements for the degree of Doctor of Philosophy in the Department of Computer Science. Chapel Hill 2005 Approved by: Jack Snoeyink, Advisor Craig Gotsman, Reader Peter Lindstrom, Reader Dinesh Manocha, Committee Member Ming Lin, Committee Member ii iii ABSTRACT MARTIN ISENBURG: Compression and Streaming of Polygon Meshes (Under the direction of Jack Snoeyink) Polygon meshes provide a simple way to represent three-dimensional surfaces and are the de-facto standard for interactive visualization of geometric models. Storing large polygon meshes in standard indexed formats results in files of substantial size. Such formats allow listing vertices and polygons in any order so that not only the mesh is stored but also the particular ordering of its elements. Mesh compression rearranges vertices and polygons into an order that allows more compact coding of the incidence between vertices and predictive compression of their positions. Previous schemes were designed for triangle meshes and polygonal faces were triangulated prior to compression. I show that polygon models can be encoded more compactly by avoiding the initial triangulation step. I describe two compression schemes that achieve better compression by encoding meshes directly in their polygonal representation. I demonstrate that the same holds true for volume meshes by extending one scheme to hexahedral meshes. Nowadays scientists create polygonal meshes of incredible size. Ironically, com- pression schemes are not capable|at least not on common desktop PCs|to deal with giga-byte size meshes that need compression the most.
    [Show full text]
  • Meshes and More CMSC425.01 Fall 2019 Administrivia
    Meshes and More CMSC425.01 fall 2019 Administrivia • Google form distributed for grading issues Today’s question How to represent objects Polygonal meshes • Standard representation of 3D assets • Questions: • What data and how stored? • How generate them? • How color and render them? Data structure • Geometric information • Vertices as 3D points • Topology information • Relationships between vertices • Edges and faces Vertex and fragment shaders • Mapping triangle to screen • Map and color vertices • Vertex shaders in 3D • Assemble into fragments • Render fragments • Fragment shaders in 2D Normals and shading – shading equation • Light eQuation • k terms – color of object • L terms – color of light • Ambient term - ka La • Constant at all positions • Diffuse term - kd (n • l) • Related to light direction • Specular term - (v • r)Q • Related to light, viewer direction Phong exponent • Powers of cos (v • r)Q • v and r normalized • Tightness of specular highlights • Shininess of object Normals and shading • Face normal • One per face • Vertex normal • One per vertex. More accurate • Interpolation • Gouraud: Shade at vertices, interpolate • Phong: Interpolate normals, shade Texture mapping • Vary color across figure • ka, kd and ks terms • Interpolate position inside polygon to get color • Not trivial! • Mapping complex Bump mapping • “Texture” map of • Perturbed normals (on right) • Perturbed height (on left) Summary – full polygon mesh asset • Mesh can have vertices, faces, edges plus normals • Material shader can have • Color (albedo) •
    [Show full text]
  • Notes on Polygon Meshes 1 Basic Definitions
    CMSC 23700 Introduction to Computer Graphics Handout 2 Autumn 2015 November 12 Notes on polygon meshes 1 Basic definitions Definition 1 A polygon mesh (or polymesh) is a triple (V; E; F ), where V a set of vertices (points in space) E ⊂ (V × V ) a set of edges (line segments) F ⊂ E∗ a set of faces (convex polygons) with the following properties: 1. for any v 2 V , there exists (v1; v2) 2 E such that v = v1 or v = v2. 2. for and e 2 E, there exists a face f 2 F such that e is in f. 3. if two faces intersect in space, then the vertex or edge of intersection is in the mesh. If all of the faces of a polygon mesh are triangles, then we call it a triangle mesh (trimesh). Polygons can be tessellated to form triangle meshes. Definition 2 We classify edges in a mesh based on the number of faces they are part of: • A boundary edge is part of exactly one face. • An interior edge is part of two or more faces. • A manifold edge is part of exactly two faces. • A junction edge is part of three or more faces. Junction edges are to be avoided; they can cause cracks when rendering the mesh. Definition 3 A polymesh is connected if the undirected graph G = (VF ;EE), called the dual graph, is connected, where • VF is a set of graph vertices corresponding to the faces of the mesh and • EE is a set of graph edges connecting adjacent faces.
    [Show full text]
  • Creating Simplified 3D Models with High Quality Textures
    University of Wollongong Research Online Faculty of Engineering and Information Sciences - Faculty of Engineering and Information Sciences Papers: Part A 2015 Creating Simplified 3D oM dels with High Quality Textures Song Liu University of Wollongong, [email protected] Wanqing Li University of Wollongong, [email protected] Philip O. Ogunbona University of Wollongong, [email protected] Yang-Wai Chow University of Wollongong, [email protected] Publication Details Liu, S., Li, W., Ogunbona, P. & Chow, Y. (2015). Creating Simplified 3D Models with High Quality Textures. 2015 International Conference on Digital Image Computing: Techniques and Applications, DICTA 2015 (pp. 264-271). United States of America: The Institute of Electrical and Electronics Engineers, Inc.. Research Online is the open access institutional repository for the University of Wollongong. For further information contact the UOW Library: [email protected] Creating Simplified 3D oM dels with High Quality Textures Abstract This paper presents an extension to the KinectFusion algorithm which allows creating simplified 3D models with high quality RGB textures. This is achieved through (i) creating model textures using images from an HD RGB camera that is calibrated with Kinect depth camera, (ii) using a modified scheme to update model textures in an asymmetrical colour volume that contains a higher number of voxels than that of the geometry volume, (iii) simplifying dense polygon mesh model using quadric-based mesh decimation algorithm, and (iv) creating and mapping 2D textures to every polygon in the output 3D model. The proposed method is implemented in real-Time by means of GPU parallel processing. Visualization via ray casting of both geometry and colour volumes provides users with a real-Time feedback of the currently scanned 3D model.
    [Show full text]
  • Modeling: Polygonal Mesh, Simplification, Lod, Mesh
    The Modeling-Rendering Paradigm Modeler: Renderer: EECS 487: Interactive Modeling complex shapes Vertex data • no equation For a chair, Face, etc. Fixed function transForm and Vertex shader • instead, achieve complexity using lighting Computer Graphics simple pieces • polygons, parametric surfaces, or Clip, homogeneous divide and viewport Lecture 36: implicit surfaces scene graph Rasterize • Polygonal mesh simplification • with arbitrary precision, in principle Texture stages Fragment shader Fragment merging: stencil, depth 3D Geometry Representations 2D: Range Image Represent different kinds oF inFormation: Image with depth inFormation point data, surface data, volumetric data • acquired From range scanner, incl. MicrosoFt Kinect and Google Tango Points Solids • not a complete 3D description: does not include • 2D: range image • Constructive Solid Geometry part oF object occluded From viewpoint • 3D: point cloud • Voxels Surfaces Procedural • Polygonal mesh • Particle system • Parametric surfaces • Spring-mass system Cyberware • Subdivision surfaces • Fractals • Implicit surfaces Curless Range image Tessellation Range surface Funkhouser Funkhouser, Ramamoorthi 3D: Point Cloud Surfaces Unstructured set oF 3D Boundary representation (B-reps) point samples • sometimes we only care about the surface, e.g., when Acquired From range finder rendering opaque objects and performing geometric computations Disadvantage: no structural inFo • adjacency/connectivity have to use e.g., k-nearest neighbors to compute Increasingly hot topic in graphics/vision
    [Show full text]
  • Polygonal Meshes
    Polygonal Meshes COS 426 3D Object Representations Points Solids Range image Voxels Point cloud BSP tree CSG Sweep Surfaces Polygonal mesh Subdivision High-level structures Parametric Scene graph Implicit Application specific 3D Object Representations Points Solids Range image Voxels Point cloud BSP tree CSG Sweep Surfaces Polygonal mesh Subdivision High-level structures Parametric Scene graph Implicit Application specific 3D Polygonal Mesh Set of polygons representing a 2D surface embedded in 3D Isenberg 3D Polygonal Mesh Geometry & topology Face Edge Vertex (x,y,z) Zorin & Schroeder Geometry background Scene is usually approximated by 3D primitives Point Vector Line segment Ray Line Plane Polygon 3D Point Specifies a location Represented by three coordinates Infinitely small typedef struct { Coordinate x; Coordinate y; Coordinate z; } Point; (x,y,z) Origin 3D Vector Specifies a direction and a magnitude Represented by three coordinates Magnitude ||V|| = sqrt(dx dx + dy dy + dz dz) Has no location typedef struct { (dx,dy,dz) Coordinate dx; Coordinate dy; Coordinate dz; } Vector; 3D Vector Dot product of two 3D vectors V1·V2 = ||V1 || || V2 || cos(Θ) (dx1,dy1,dz1) Θ (dx2,dy2 ,dz2) 3D Vector Cross product of two 3D vectors V1·V2 = (dy1dx2 - dz1dy2, dz1dx2 - dx1dz2, dx1dy2 - dy1dx2) V1xV2 = vector perpendicular to both V1 and V2 ||V1xV2|| = ||V1 || || V2 || sin(Θ) (dx1,dy1,dz1) Θ (dx2,dy2 ,dz2) V1xV2 3D Line Segment Linear path between two points Parametric representation: » P = P1 + t (P2 - P1),
    [Show full text]
  • Part 2 – Chapter 4: Modelling and Rendering of 3D Objects
    Part 2 – Chapter 4: Modelling and Rendering of 3D Objects 4.1 3D Shape Representations 4.2 Example: Rendering 3D objects using OpenGL 4.3 Depth Buffer - Handling occlusion in 3D 4.4 Double Buffering - Rendering animated objects 4.5 Vertex colours & colour interpolation - Increasing realism 4.6 Backface culling – Increasing efficiency 4.7 Modelling and Animation Tools © 2017 Burkhard Wuensche Dept. of Computer Science, University of Auckland COMPSCI 373 Computer Graphics & Image Processing 2 Polygonmesh The most suitable shape representation Parametric Surface depends on the application => IMPORTANT DESIGN DECISION Subdivison Surface Implicit Surface Constructive Solid Geometry Point Cloud © 2017 Burkhard Wuensche Dept. of Computer Science, University of Auckland COMPSCI 373 Computer Graphics & Image Processing 3 Defined by a set of vertices and a set of faces Faces are (usually) quadrilaterals or triangles The illusion of a solid 3D object is achieved by representing the object’s boundary surface with a polygon mesh © 2017 Burkhard Wuensche Dept. of Computer Science, University of Auckland COMPSCI 373 Computer Graphics & Image Processing 4 Advantages Disadvantages • Easy to define - just • Impractical for everything but the define vertex positions most basic meshes and connectivity • Time-consuming • No control over shape properties (e.g. curvature, smoothness) 1’ 10’ 8’ 6 56’5’ 1 10 8 7 3 3’ 9 2 2’ 4’ 4 © 2017 Burkhard Wuensche Dept. of Computer Science, University of Auckland COMPSCI 373 Computer Graphics & Image Processing 5 Defined as function p(s,t)=(x(s,t), y(s,t), z(s,t)) Direct definition is difficult, but we can use spline surfaces where surfaces are defined using control points, e.g.
    [Show full text]
  • Visualizing with Microstation Course Guide
    Visualizing with MicroStation Course Guide TRN001370-1/0001 Trademarks AccuDraw, the “B” Bentley logo, MDL, MicroStation, MicroStationCSP, MicroStation Modeler, MicroStation PowerDraft, MicroStation Review, MicroStation Vault, QuickVision, SmartLine and TeamMate are registered trademarks of Bentley Systems, Incorporated. Bentley, MicroStation MasterPiece and PowerScope are trademarks of Bentley Systems, Incorporated. Bentley SELECT is a service mark of Bentley Systems, Incorporated. HMR and Image Manager are trademarks of HMR Inc. Adobe, the Adobe logo, Acrobat, the Acrobat logo, Distiller, Exchange, and PostScript are trademarks of Adobe Systems Incorporated. Windows is a registered trademark and Win32s is a trademark of Microsoft Corporation. Other brands and product names are the trademarks of their respective owners. Copyrights 1997 Bentley Systems, Incorporated. MicroStation® 95 1995 Bentley Systems, Incorporated. ©1997 HMR Inc. All rights reserved. MicroStation Image Manager ©1997 HMR Inc. ©1996 LCS/Telegraphics. Portions of QuickVision are ©1993-1995 Criterion Software Ltd. and its licensors. Portions of QuickVision were developed by the CAD Perfect Development Laboratory. Portions 1992-1997 Spotlight Graphics, Inc. Portions 1993-1995 Spyglass, Inc. IGDS file formats 1987-1994 Intergraph Corporation. Intergraph Raster File Formats 1994 Intergraph Corporation Used with permission. Portions 1992-1994 Summit Software Company. Unpublished – rights reserved under the copyright laws of the United States. Visualizing with MicroStation
    [Show full text]
  • Modifing Thingiverse Model in Blender
    Modifing Thingiverse Model In Blender Godard usually approbating proportionately or lixiviate cooingly when artier Wyn niello lastingly and forwardly. Euclidean Raoul still frivolling: antiphonic and indoor Ansell mildew quite fatly but redipped her exotoxin eligibly. Exhilarating and uncarted Manuel often discomforts some Roosevelt intimately or twaddles parabolically. Why not built into inventor using thingiverse blender sculpt the model window Logo simple metal, blender to thingiverse all your scene of the combined and. Your blender is in blender to empower the! This model then merging some models with blender also the thingiverse me who as! Cam can also fits a thingiverse in your model which are interchangeably used software? Stl files software is thingiverse blender resize designs directly from the toolbar from scratch to mark parts of the optics will be to! Another method for linux blender, in thingiverse and reusable components may. Svg export new geometrics works, after hours and drop or another one of hobbyist projects its huge user community gallery to the day? You blender model is thingiverse all models working choice for modeling meaning you can be. However in blender by using the product. Open in blender resize it original shape modeling software for a problem indeed delete this software for a copy. Stl file blender and thingiverse all the stl files using a screenshot? Another one modifing thingiverse model in blender is likely that. If we are in thingiverse object you to modeling are. Stl for not choose another source. The model in handy later. The correct dimensions then press esc to animation and exporting into many brands and exported file with the.
    [Show full text]
  • GPU Volume Voxelization Exploration of the Performance Characteristics of Different GPU-Based Implementations
    EXAMENSARBETE INOM TEKNIK, GRUNDNIVÅ, 15 HP STOCKHOLM, SVERIGE 2019 GPU Volume Voxelization Exploration of the performance characteristics of different GPU-based implementations GRIGORY GLUKHOV ALEKSANDRA SOLTAN KTH SKOLAN FÖR ELEKTROTEKNIK OCH DATAVETENSKAP GPU Volume Voxelization Exploration of the performance characteris- tics of different GPU-based implementations Aleksandra Soltan Grigory Glukhov Examiner Johan Montelius Supervisor Thomas Sjöland A thesis presented for the degree of Bachelor of Information and Communication Technology KTH Royal Institute of Technology School of Electrical Engineering and Computer Science SE-100 44 Stockholm, Sweden June 2019 page intentionally left blank 1 Abstract In recent years, voxel-based modelling has seen a reintroduction to computer game development through massive graphics hardware improvements. Never- theless, polygons continue to be the default building block of 3D objects, intro- ducing a need for the transformation of polygon meshes into voxel-based models; this process is known as voxelization. Efficient voxelization algorithms take ad- vantage of the flexibility and control offered by modern, programmable GPU pipelines. However, the variability in possible approaches poses the question of how different GPU-based implementations affect voxelization performance. This thesis explores the impact of GPU-based improvements by comparing four different implementations of a solid voxelization algorithm. The implemen- tations include a naive transition from the CPU to the GPU, a non-branching execution path approach, data pre-processing, and a combination of the two previous approaches. Benchmarking experiments run on four, standard polygo- nal models and three graphics cards (NVIDIA and AMD) provide runtime and memory usage data for each implementation. A comparative analysis is per- formed on the basis of this data to determine the performance impact of the GPU-based adjustments to the voxelization algorithm implementation.
    [Show full text]
  • Reading and Voxelization of 3D Models
    Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2013, 5(9):420-427 ISSN : 0975-7384 Research Article CODEN(USA) : JCPRC5 Reading and voxelization of 3D models Xu Haili, Wang Heng, Zhu Longbiao and Hua Guoran School of Mechanical Engineering, Nantong University, Nantong, Jiangsu, China __________________________________________________________________________________________ ABSTRACT 3D models have got widespread attention in graphics currently. Most 3D models are used for visual calculation, but they only contain geometric and appearance properties and the description of high-level semantic features suitable for automatically matching are very little. So, how to reasonably describe 3D models (feature extraction) is a difficult problem of the prime importance. Voxelization just can solve this problem. The voxel model is helpful for regularization of 3D models and is convenient to extract models’ characteristic signals. This paper proposed a voxelization method based on edclidean distance measurement to voxelize models’ vertices, edges and faces. Experiment results indicated that the method is efficient and effective for generating correct entity voxel models. Keywords: 3D models, voxelization, polygonal meshes, OpenGL __________________________________________________________________________________________ INTRODUCTION Following sound, images and video signal, 3D models have got widespread attention in graphics since 90's of 20th century. 3D models are widely used in image processing, animation simulation, entertainment and gaming and geometric modeling etc, which tend to replace 2D drawings in engineering design. Most 3D models are used for visual calculation. They only contain geometric and appearance properties, and the description of high-level semantic features suitable for automatically matching are very little. So, how to reasonably describe 3D models (feature extraction) is a difficult problem of the prime importance[1].
    [Show full text]