Texture Mapping with Hard Constraints

Size: px
Start display at page:

Download "Texture Mapping with Hard Constraints"

Transcription

1 EUROGRAPHICS 2001 / A.Chalmers and T.-M.Rhyne Volume 20 (2001), Number 3 (Guest Editors) Texture Mapping with Hard Constraints Ilya Eckstein Vitaly Surazhsky Craig Gotsman Computer Science Department, Technion Israel Institute of Technology {ekshteyn vitus gotsman}@cs.technion.ac.il Abstract We show how to continuously map a texture onto a 3D triangle mesh when some of the mesh vertices are constrained to have given (u,v) coordinates. This problem arises frequently in interactive texture mapping applications and, to the best of our knowledge, a complete and efficient solution is not available. Our techniques always guarantee a solution by introducing extra (Steiner) vertices in the triangulation if needed. We show how to apply our methods to texture mapping in multi-resolution scenarios and image warping and morphing. 1. Introduction Interactive 3D authoring applications frequently map 2D textures onto a 3D triangle mesh. This involves assigning (u,v) coordinates to the vertices of the 3D mesh, which defines a piecewise affine mapping of the texture image to the 3D mesh triangles. While many applications do not care about the precise values of the (u,v) coordinates, as long as the result looks reasonable, there are applications in which these values are critical. For example, when texture mapping a photograph of a face to a 3D mesh of a head, it is important that the eyes and the nose in the photograph are aligned precisely with the eyes and the nose in the mesh. Figure 1 illustrates what might happen if these constraints are not satisfied. Precise alignment means that the (u,v) coordinates associated with feature points in the 3D mesh are constrained to very specific values, known as hard constraints. The (u,v) coordinates of the rest of the mesh are not as constrained, as long as the resulting mapping is visually appealing. By visually appealing we mean that the texture is mapped in a continuous manner onto the 3D mesh, namely, does not contain foldovers or tears, and is not too distorted, despite the constraints. While many papers [4,6,11,12,13,14,16,19] deal with the problem of minimal-distortion texture-mapping, to the best of our knowledge, none of them permit hard constraints in the mapping. The technique of Levy and Mallet [13] permits soft constraints, i.e. where the constraints are allowed to be only approximately satisfied. This paper shows how to obtain continuous piecewise-affine mappings of a texture map to a 3D mesh with hard constraints. Since, in general, arbitrary hard constraints might prevent any solution to the problem, we present a general technique for satisfying constraints, which involves the introduction of extra vertices into the mesh. These vertices are known as Steiner vertices. Our technique solves the problem of texture mapping with hard constraints and also the following problem that arises when texture mapping a multiresolution mesh, namely, maintaining a legal parametrization of the mesh at all resolution levels: Assume that a full-resolution mesh has a continuous parametrization (i.e. texture coordinates), and a simplification algorithm has generated a sequence of vertex removals and hole retriangulations for the mesh (for an example of such an algorithm see [9]). The texture coordinates of the vertices remaining in the lower resolution meshes are just inherited from the highest resolution mesh, and the new connectivity defines a new parametrization. In many cases, this parametrization of the low resolution mesh will be legal (i.e. the 2D triangulation will not contain foldovers), but this is not guaranteed. We show how, given a high-resolution 3D mesh and its simplification history, it is possible to parametrize the mesh such that the parametrization indeed remains legal throughout the simplification procedure. This paper is organized as follows: Section 2 elaborates on the connection between parametrization of 3D meshes and the embedding of their connectivity graph in the plane. Section 3 describes our parametrization technique in detail. Section 4 provides experimental results related to various applications, and we discuss extensions and conclude in Section Texture Mapping as Parametrization or Embedding Assigning texture coordinates to a 3D mesh can be regarded as a parametrization of the mesh surface, where each 3D vertex is assigned a 2D parameter value, and each point on the mesh surface is parametrized by the appropriate convex combination of the parameter values of the vertices of the surface triangle in which it resides. Care must be taken that the parametrization is legal, i.e. that no two points on the mesh surface are mapped to the same point in the 2D parameter domain. This may be achieved if the Published by Blackwell Publishers, 108 Cowley Road, Oxford OX4 IJF, UK and 350 Main Street, Malden, MA 02148, USA

2 (a) (b) (c) (d) Figure 1: Texture mapping with hard constraints. (a) Texture map with feature points marked. These should be mapped to the appropriate geometric features marked on (b). (b) 3D face with features corresponding to those of (a). (c) Rendering of result when constraints are ignored. Texture coordinates were generated using the shape preservation method of Floater [7]. Note the texture nose and the geometric nose. (d) Rendering of result when constraints are satisfied using our techniques. straight-line graph in the plane induced by the 3D vertex parameter values and its connectivity graph is a legal triangulation of the 2D parameter points, i.e. that the edges do not intersect and all the triangles have the same orientation. In this case we may also say that the 3D mesh has been legally embedded in the plane. Note that actually only the connectivity of the 3D mesh plays a role in the problem. The geometry of the mesh, i.e. the 3D coordinates of the vertices, does not have to be used in order to compute an embedding. Since it is impossible to legally embed a mesh topologically equivalent to a closed sphere in the plane, we restrict our discussion to the case of a mesh with a boundary, which is topologically compatible with a rectangular texture map. Closed meshes, as also those of higher genus, may be reduced to the case we treat by cutting the mesh into pieces, but then the issue of continuity across boundaries must be addressed. Embedding a 3D mesh with a single boundary (i.e. topologically equivalent to the disk) in the plane has been addressed by many authors. Since usually the embedding is not unique, a good embedding, in a variety of senses, is sought. One of the main concerns is that the embedding preserve the geometric properties of the 3D mesh, e.g. edge lengths, areas, angles, etc. Tutte [18] first provided the most basic way of computing embeddings using barycentric coordinates, in which the boundary vertices are mapped to a convex position and each interior vertex is positioned at the centroid of the locations of its neighbors. Computing this embedding involves solving a set of linear equations derived from the connectivity graph adjacency matrix, and results in an embedding with the minimal sum of squares of the edge lengths. Floater [7] later generalized this to arbitrary convex combinations and used this mechanism to generate shape-preserving parametrizations. Eck et al [6] used harmonic mappings to achieve a similar effect and minimize distortions in a sense. Other embedding methods, some which do not require mapping the boundary vertices to a convex shape, are described by Zigelman et al [19] and Sheffer and de Sturler [16]. None of these methods are easily extendable to parametrizations with hard constraints. A legal triangulation on n points may be formulated as a solution to a set of t quadratic inequalities, where t is the number of triangles, as follows: If {(x i,y i ), i=1,..,n} are the locations of the n vertices, and (x 1,y 1 ), (x 2,y 2 ) (x 3,y 3 ) are the coordinates of some triangle as defined by the connectivity graph, the following inequality must hold: x1 y1 1 x2 y2 1 > 0 x y where. denotes determinant. Similar inequalities must hold for all t triangles. This means that the signed area of all the triangles must be positive, implying that the triangles be non-degenerate and consistently oriented. Note that if the boundary vertices are fixed, boundary triangles impose linear (or constant) inequalities. Sheffer and de Sturler [16] have formulated a different set of (highly non-linear) inequalities on the angles of a triangulation to guarantee legality. Both formulations can easily incorporate hard constraints as extra equalities, but solving either of them involve heavy numerics, which become slow, unwieldy and unstable, hence unpractical for large meshes. Adding a cost function to minimize distortion further complicates matters, as the optimization process might get stuck in local minima. Additionally, adding hard constraints may eliminate all solutions, such as we will see in the next section. Standard interpolation techniques to map R 3 to R 2, such as radial basis functions (RBF), based on Gaussian [1] or B- Spline basis functions [5] may satisfy hard constraints, but cannot guarantee that the induced 2D triangulation will be valid, i.e. not contain foldovers, as Figure 2 demonstrates.

3 Alexa [2] addressed the problem of embedding a closed genus-0 3D mesh on the sphere with constraints, in order to align the vertices of two such meshes in a 3D morphing application. This is quite similar to our problem (which occurs in the plane). However, the heuristic (iterative) solution offered by Alexa is quite slow, and not guaranteed to find a solution, even if one exists. It also does not introduce Steiner vertices to create a solution when one is not possible without them. Thus an algorithmic solution is sought, which is both efficient and will produce some solution (by introducing Steiner vertices) even if the constraints are difficult (or impossible) to satisfy. The ability to solve the problem efficiently for all inputs is what distinguishes our solution from all previous work. 3. Embedding with Hard Constraints Embedding a 3D mesh in the plane with hard constraints seems to be a very difficult problem, even if such an embedding exists, which might not be the case. Hence, we make the problem easier by allowing the 2D embedding to contain extra vertices, called Steiner vertices. This means that a 3D edge will be mapped to a 2D path of edges. Steiner vertices are frequently used in graph-drawing applications, which are also a variant of the embedding problem. See e.g. Pach and Wenger [15]. Figure 3 shows an example of a constrained connectivity for which a straightline 2D embedding does not exist, but the introduction of Steiner vertices admits a solution. 3.1 The embedding procedure Our embedding procedure is as described in Algorithm 1. It first removes all the unconstrained vertices from the mesh (the simplification phase), and then restores them in reverse order (the reconstruction phase). The reconstruction phase maintains the invariant that the embedding remains legal after each vertex insertion. Steps 2, 3c and 3d of Algorithm 1 deserve further explanation. Let us begin with the latter two. The kernel fix procedure tries to move vertices of the polygon in which the vertex in question lies in order that the polygon be star-shaped (have a non-empty kernel). Note that if a vertex is not located inside the (possible empty) kernel of its neighborhood polygon, at least one of its neighbors must be in a similar predicament. Hence we (serially) examine locations of all vertices and identify all those which do not reside inside the kernel of their neighborhood polygons. For each such vertex, we position it inside the corresponding kernel if its neighbors form a star-shaped polygon. Were there no hard constraints, this procedure could ultimately result in a legal triangulation of the point set. Figure 4 illustrates this procedure. If the constraints do not allow this procedure to converge, we choose the location of the vertex to be the point in the plane which minimizes the variance of the areas of the triangles formed by the vertex and the polygon vertices. The kernel fix procedure increases the chance of a legal embedding, but can not guarantee it, since there exist inputs for which a solution does not exist. When the kernel fix procedure fails, we resort to Steiner vertices. In this case, we discard all the changes performed by the kernel fix procedure and apply the Steiner embed procedure. Note that the neighborhood polygon is always simple (since the embedding generated until now is legal due to the main invariant). Hence, all we have to do is to legally position the new vertex inside the polygon. The Steiner embed procedure positions that vertex and additional Steiner vertices in the polygon such that the new vertex is connected to all polygon vertices by polygonal paths, instead of straightline edges, and then triangulates the resulting nontriangular faces inside the polygon. The method uses a variant of Gotsman and Surazhsky [10] on the so-called universal method of Aronov et al [3] for compatibly triangulating pairs of polygons. See Figure 5 for an example. 1. (The embedding phase) Ignore the hard constraints. Compute barycentric coordinates for the vertices (using the "shape preservation" method of Floater [7]), and use them to generate a planar embedding of the connectivity graph. 2. (The simplification phase) Simplify the mesh connectivity using constrained simplification (Algorithm 2), until only the subset of constrained vertices remain embedded at their prescribed locations with some legal triangulation. Maintain a record of the entire simplification history, together with the 2D barycentric coordinates of each removed vertex relative to its neighbors at the moment of removal. 3. (The reconstruction phase) Restore the unconstrained vertices of the mesh (and their connectivity) in the reverse order of simplification, by doing the following: a. Embed the vertex at a location in the plane determined by the barycentric coordinates of its neighbors at that level, as computed in step 2. b. If the computed location of the vertex is outside the kernel of the polygon formed by its neighbors (meaning the embedding is now illegal), place the vertex at at arbitrary location inside the kernel. c. If the kernel is empty run the kernel fix procedure on the triangulation. d. If the kernel is still empty - run the Steiner embed procedure on the polygon. Algorithm 1: Constrained embedding. 3.2 Constrained simplification The main invariant of our algorithm is that each iteration of the reconstruction phase starts with a legal embedding and

4 maintains its legality. Naturally, we have to ensure that the last step of the procedure, i.e. the embedding of only the hard constrained vertices, is legal too. The problem is that if we employ an arbitrary simplification scheme in the simplification phase, the resulting triangulation at the last step may be illegal when we apply the geometric constraints. A better alternative is to work towards some legal triangulation of the constrained vertices, e.g. the Delaunay triangulation. We call this procedure constrained simplification, and need the following definitions to describe it: A fixed vertex is a vertex constrained in the input. The set of fixed vertices of a triangulation will be denoted by V F. A fixed edge is an edge connecting two fixed vertices. The set of fixed edges of a triangulation will be denoted by E F. A fixed triangle is a triangle with three fixed vertices (thus, all its edges are fixed as well). T(V,E) is the initial (non-simplified) planar triangulation and T F (V F,E F ) is the desired output of the simplification procedure. V F V. A cut-border (CB) in a triangulation T(V,E) is a simple closed cycle of edges in E F E. The simplification algorithm proceeds as described in Algorithm 2 and illustrated in Figure 6. It maintains a dynamic cut-border which separates the region of the mesh that has been simplified from that not yet simplified. Algorithm 2 maintains the invariant that the cut-border is always simple. Note that the intermediate triangulations are not required to be legal during the simplification process. However, we still try to keep them as legal as possible so that the barycentric coordinates stored for the removed vertices are legal, which is desirable for the subsequent reconstruction step. This scheme is not guaranteed to succeed. However, experiments show that in practical scenarios, failures are extremely rare. coordinates, applying steps 3(a), 3(b) of Algorithm 1. If the attempt fails for some vertex, it remains in its existing location, which is always legal. In this manner the relaxation procedure reproduces the original (unconstrained) barycentric coordinates for many unconstrained vertices, minimizing distortion. Constrained-simplification(T,T F ) 1. Initialize CB to be the boundary of T (since, in particular, the boundary is fixed). 2. While T contains non-fixed vertices (V V F φ): a. Let e be in CB and let v be the vertex within CB forming a triangle with e. b. If v V F, remove e from CB and add to CB the edges that connect the endpoints of e to v and goto (a). See Figure 6(b),(c). c. If v V F, remove v from T (Figure 6(d)) and retriangulate the resulting polygonal hole by adding all the triangles of T F incident on CB possible. We might remain with holes that still have to be retriangulated. See Figure 6(e). d. Apply Delaunay triangulation to the holes (Figure 6(f)). If any fixed edges were added in this triangulation, try to eliminate them by flipping edges (Figure 6(g)). We want to avoid fixed edges, since they might cause the cut-border to be non-simple in the future. e. If the previous step failed, find any (not necessarily geometrically legal) retriangulation which does not add fixed edges. If nothing found, return to step (c) and attempt to remove a different vertex v V F. If all such v fail - report failure. 3. Report success. Algorithm 2: Constrained simplification. 3.3 Minimizing distortion Although Algorithm 1 yields a legal planar triangulation, the result may be significantly distorted, in the sense that the triangles may be long and skinny, the constraints having had a global effect on the result. This is undesirable, especially in interactive texture mapping applications, where dragging a control point should have only a local effect. The number of Steiner vertices might also be unneccesarily large. To overcome this, we employ an on-the-fly relaxation procedure, aimed at keeping the distortion minimal during the reconstruction phase of the algorithm. The idea behind this procedure is as follows: at the simplification phase we choose several levels of the multiresolution hierarchy to be fully recorded levels: for each such level we record barycentric coordinates of every unconstrained interior vertex (relative to its neighbors). At the reconstruction phase, each time we reach a fully recorded level we attempt to re-embed every unconstrained vertex inside its neighborhood polygon according to its original barycentric (a) Figure 2: Constrained embedding using RBF. (a) A planar triangulation with a fixed boundary and two constrained interior vertices: a and b. (b) Changing the position of b and using RBF to generate new positions for the other unconstrained interior vertices. The result is not a legal embedding (b)

5 (a) (b) Figure 3: Straight-line embedding using Steiner vertices. (a) A connectivity graph with all vertices constrained which cannot be embedded as a triangulation in the plane. (b) Embedding for the input of (a) using (green) Steiner vertices. The dashed edges are added to keep the graph a legal triangulation. v v u u v 0 (a) (b) (c) Figure 4: The kernel fix procedure. (a) The red polygon is not star-shaped, hence no location of the central vertex v will result in a legal triangulation. (b) The vertex u neighboring on v is outside its neighborhood polygon s kernel. (c) Moving u into the kernel of its neighborhood polygon solves both problems. (a) (b) Figure 5: Inserting a vertex into a non-star-shaped polygon using Steiner vertices. (a) Polygon and inserted central vertex. Note the crossing edges. (b) Spiderweb triangulation of polygon using (green) Steiner vertices. The brown edges partition the polygon into convex parts, the blue paths correspond to the original blue edges and the dashed ones were added to obtain a legal triangulation.

6 exterior (simplified) interior (non-simp lified) cut border (a) (b) (c) forbidden edge (d) (e) (f) Figure 6: Constrained simplification of a triangulation with (marked) fixed vertices. (a) A (red) cut-border is maintained. All fixed (filled) triangles are outside the cutborder (b),(c) Updating the cut-border after a new fixed vertex (the large one) is encountered. (d) Removing a non-fixed vertex. (e) Identifying the one fixed triangle that may be added at the current stage. (f) Triangulating the remaining holes. Note the fixed edge added by the retriangulation procedure, which is forbidden at this stage. (g) Several edge flips performed to eliminate the forbidden edge. (g) The relaxation also reduces the number of Steiner vertices, as we are able to remove some of those introduced during the reconstruction phase. These vertices were critical in the coarse triangulations, but as more original vertices are restored, the triangulation becomes more flexible and many Steiner vertices are no longer needed. Hence, when in the relaxation routine we discover that the neighborhood polygon of a vertex previously embedded using Steiner vertices is now star-shaped, we may eliminate all these Steiner vertices. See Figure 7 for some results. 4. Experimental Results In this section we demonstrate the results achieved by our algorithm and compare them with results from regular texture-mapping algorithms and commercial packages D texture mapping Figure 8(a) shows a 2D texture and 8(b) a 3D mesh of a female torso, where a correspondence between various features on the 2D texture and 3D meshes are marked. The objective is to texture map the image onto the mesh such that the corresponding features coincide, and it looks like a well-fitted vest. Figure 8(c) shows what a interactive authoring system not supporting constrained texture mapping generates and Figure 8(d) shows our results. The 3D mesh in this example contained 928 vertices and we introduced 32 constraints. Solving for the constrained parametrization took less than one second on a state-of-the-art PC, which was typical for all the examples we experimented with. 4.2 Multiresolution texture mapping In most multiresolution scenarios, texture coordinates are defined for the highest resolution, and inherited in lower resolution versions of the model, which contain a retriangulated subset of the high resolution vertex set. However, nothing guarantees that the inherited parametrization, i.e. embedding in the plane of the subset, triangulated using the low-resolution connectivity, will be legal. If the 3D mesh is

7 well-behaved, illegal triangulations at lower resolutions will rarely occur, but meshes with complex geometry cannot avoid this. Hence, an important practical problem is, given a mesh and its simplification history a sequence of vertex removals and hole retriangulations generate a parametrization which will be legal at all resolution levels. Our algorithm to achieve this is as described in Algorithm 3, possibly also requiring introduction of Steiner vertices. Note that we do not use the kernel fix procedure at Step 3 of Algorithm 3 because we are not allowed to change the locations of the vertices already embedded. In this manner we preserve the legality of the triangulation for all levels of resolution already reconstructed. Figure 9 shows parametrizations of a mesh at three levels of detail, when the original arbitrary parametrization is used, and when the one generated by Algorithm 3 is used. The former loses its validity very quickly as resolution is reduced, while the latter remains valid throughout the simplification procedure D warping and morphing Another application of our constrained texture mapping procedure is to 2D image warping. This is actually no more than a special case of the problem described above, where the 3D mesh is just a 2D triangulation. The exact problem is: Given a 2D triangulation of an image with feature vertices, and new locations for a subset of the vertices, is it possible to generate new locations for the rest of the vertices such that the resulting induced triangulation (using the original connectivity) is still legal? In this case we say that the two triangulations are compatible. This will facilitate a piecewise-affine warp of the image such that the constraints (moved vertices) are satisfied. they induce legal intermediate triangulations. Naïve morphing methods, e.g. those obtained by using straight line trajectories, fail on most inputs, especially those involving rotations of the points. The method of Floater and Gotsman interpolates the barycentric coordinate representation of the triangulation, hence maintains legality of the triangulation throughout the morph. Figure 10 shows an example where compatible triangulations have been generated and morphed. 1. Execute steps (1) and (2) of Algorithm 1, with the sole difference that the simplification process used here is the given simplification history (instead of the constrained simplification ), until the coarsest simplification level is reached. 2. If the parametrization at the coarsest level is illegal, run the kernel fix procedure to make it legal. This is guaranteed to succeed, as there are no hard-constrained vertices. 3. Restore the vertices of the mesh (and their connectivity) in the reverse order of simplification, performing the following steps: Embed the vertex at a location in the plane determined by the barycentric coordinates of its neighbors at that level, as computed in step 2. If the computed location of the vertex is not in the kernel of the vertex s neighborhood polygon (meaning the embedding is illegal), place it inside the kernel. If the kernel is empty - run the Steiner embed procedure on the polygon. Algorithm 3: Multiresolution parametrization. Once we have generated two compatible triangulations, we can use the method of Floater and Gotsman [8] to morph between them. The objective is to generate vertex trajectories interpolating the two sets of vertex locations, such that (a) (b) (c) Figure 7: Minimizing distortion. (a) Original mesh in which marked vertices will be moved to new locations. (b) New parametrization with (blue) Steiner vertices generated by our algorithm, satisfying hard constraints after vertices have been moved (essentially rotated). No relaxation was used. (c) Result after relaxation.

8 EUROGRAPHICS 2001 / A.Chalmers and T.-M.Rhyne Volume 20 (2001), Number 3 (Guest Editors) (a) (b) (c) (d) Figure 8: Texture mapping with hard constraints. (a) 2D texture with some feature points. (b) 3D mesh with features corresponding to those in (a). (c) Results when constraints are ignored. (d) Our result when the constraints are satisfied. (a) (b) (c) (d) (e) (f) Figure 9: Multiresolution parametrization. (a) A given parametrization of a 3D mesh. (b,c) Parametrizations of two lower resolutions of the mesh, where the parameter values are inherited from (a). Note the multiple edge intersections, making the parametrizations illegal. (d-f) Parametrization of the mesh generated using our method, shown at the same levels of detail (and identical connectivities) as (a-c). Note that (e) contains two Steiner vertices, marked by + s. The EUROGRAPHICS Association and Blackwell Publishers Published by Blackwell Publishers, 108 Cowley Road, Oxford OX4 IJF, UK and 350 Main street, Malden, MA 02148, USA

9 (a) (b) (c) Figure 10: Morphing using constrained parametrization. (a) Source image with triangulation of control points. Purple points are features that will be moved to new locations in the target image. (b) Target image with new triangulation satisfying constraints generated by our method. (c) Result generated by SurfaceSuite package in an attempt to satisfy the constraints. Note the tear (discontinuity) in the image. Bottom line: Morph between (a) and (b) generated by algorithm of Floater and Gotsman [8] for morphing compatible triangulations. 5. Discussion and Conclusion We have presented an efficient algorithm for the generation of a parametrization of a 3D mesh in the presence of hard constraints. The algorithm may generate Steiner vertices in the case that a simple solution does not exist. This seems to be the first algorithm to deal with hard constraints in a systematic manner, and is applicable to a number of common problems in 2D and 3D modeling, including multiresolution texture mapping and image morphing. Our method generates continuous piecewise-affine parametrizations of 3D meshes containing Steiner vertices. It is easy to see that many Steiner vertices might be needed in the worst case, which is undesirable, as it increases the complexity of the mapping. Relaxation indeed alleviates this, but a method to bring to a minimum the number of Steiner vertices used is still open. A number of heuristic parameters are used in our algorithm, and their effect on the results is not fully clear yet. An example is the precise location of a vertex in the kernel during the kernel fix procedure. Right now we position it somewhere along the line joining the kernel centroid with the original location, so that, on the one hand, it is in the kernel, and on the other hand, it does not move too much from its original location. From a theoretical point of view, Algorithm 3 produces a legal parametrization for all resolution levels of a multiresolution model. However, from a practical point of view, this parametrization leaves much to be desired in terms of its quality. Relaxation in its current form is impossible since it must be done on multiple resolution levels. We are experimenting with this, as well as with ways of guiding the parametrization by incorporating hard constraints in this scenario as well. A computational geometric problem which is closely related to the constrained embedding problem is that of compatible geometries: Given two n-vertex planar graph connectivities, position n vertices in the plane, such that both the straight-line graphs induced by the two connectivities are legal triangulations. This will allow the use of common texture coordinates for two n-vertex 3D models with different connectivity graphs, or the changing of the connectivity of a given 3D model (as in a remeshing or mesh optimization scenario) without having to modify the model s texture coordinates. This is a subject of future research. Acknowledgements This research was partially supported by European project HPRN-CT (MINGLE).

10 References [1] N. Arad and D. Reisfeld. Image warping using few anchor points and radial functions. Computer Graphics Forum, 14(1):35-46, [2] M. Alexa. Merging polyhedral shapes with scattered features. The Visual Computer, 16:26-37, [3] B. Aronov, R. Seidel and D. Souvaine. On compatible triangulations of simple polygons. Computational Geometry: Theory and Applications, 3:27-35, [4] C. Bennis, J. M. Vezien and G. Iglesias. Piecewise surface flattening for non-distorted texture mapping, ACM SIGGRAPH Conference Proceedings, pp , [5] P. Borrel and A. Rappoport, Simple constrained deformations for geometric modeling and interactive design. ACM Transactions on Graphics, 13(2): , [6] M. Eck, T. DeRose, T. Duchamp, H. Hoppe, M. Lounsbery, and W. Stuetzle. Multiresolution analysis of arbitrary meshes. ACM SIGGRAPH Conference Proceedings, pp , [7] M. S. Floater. Parameterization and smooth approximation of surface triangulation. Computer Aided Geometric Design, 14: , [8] M. S. Floater and C. Gotsman. How to morph tilings injectively. Journal of Computational and Applied Mathematics, 101: , [9] M. Garland and P. Heckbert. Surface simplification using quadric error metrics. ACM SIGGRAPH Conference Proceedings, pp , [10] C. Gotsman and V. Surazhsky. Guaranteed intersection-free polygon morphing. Computers and Graphics, 25(1):67-75, [11] K. Hormann, G. Greiner. MIPS - An efficient global parametrization method. Curve and Surface Design Conference Proceedings, pp , Saint-Malo, [12] W. F. Lee, W. Sweldens, P. Schroder, L. Cowsar and D. Dobkin. MAPS: Multiresolution adaptive parameterization of surfaces. ACM SIGGRAPH Conference Proceedings, pp , [13] Levy and J. L. Mallet. Non-distorted texture mapping for sheared triangulated meshes. ACM SIGGRAPH Conference Proceedings, pp , [14] J. Maillot, H. Yahia and A. Verroust. Interactive texture mapping. ACM SIGGRAPH Conference Proceedings, pp , [15] J. Pach and R. Wenger. Embedding planar graphs with fixed vertex locations. Proceedings of Graph Drawing '98. Lecture Notes in Computer Science 1547, Springer-Verlag, 1998, pp [16] A. Sheffer and E. de Sturler. Surface parametrization for meshing by triangulation by flattening. Proceedings of the 9 th International Meshing Roundtable, pp , [17] Sven Technologies, Inc. Surface Suite Pro. Available at [18] W. T. Tutte. How to draw a graph. Proc. London Math. Soc., 13: , [19] G. Zigelman, R. Kimmel and N. Kiryati. Texture mapping using surface flattening via multidimensional scaling", Technical Report CIS , Computer Science Department,Technion, Israel.

Parameterization of Triangular Meshes with Virtual Boundaries

Parameterization of Triangular Meshes with Virtual Boundaries Parameterization of Triangular Meshes with Virtual Boundaries Yunjin Lee 1;Λ Hyoung Seok Kim 2;y Seungyong Lee 1;z 1 Department of Computer Science and Engineering Pohang University of Science and Technology

More information

Intrinsic Morphing of Compatible Triangulations. VITALY SURAZHSKY CRAIG GOTSMAN

Intrinsic Morphing of Compatible Triangulations. VITALY SURAZHSKY CRAIG GOTSMAN International Journal of Shape Modeling Vol. 9, No. 2 (2003) 191 201 c World Scientific Publishing Company Intrinsic Morphing of Compatible Triangulations VITALY SURAZHSKY vitus@cs.technion.ac.il CRAIG

More information

Cloning Skeleton-driven Animation to Other Models

Cloning Skeleton-driven Animation to Other Models Cloning Skeleton-driven Animation to Other Models Wan-Chi Luo Jian-Bin Huang Bing-Yu Chen Pin-Chou Liu National Taiwan University {maggie, azar, toby}@cmlab.csie.ntu.edu.tw robin@ntu.edu.tw Abstract-3D

More information

Manifold Parameterization

Manifold Parameterization Manifold Parameterization Lei Zhang 1,2, Ligang Liu 1,2, Zhongping Ji 1,2, and Guojin Wang 1,2 1 Department of Mathematics, Zhejiang University, Hangzhou 310027, China 2 State Key Lab of CAD&CG, Zhejiang

More information

Spanning Tree Seams for Reducing Parameterization Distortion of Triangulated Surfaces

Spanning Tree Seams for Reducing Parameterization Distortion of Triangulated Surfaces Spanning Tree Seams for Reducing Parameterization Distortion of Triangulated Surfaces Alla Sheffer Department of Computer Science Technion, Haifa, Israel e-mail:sheffa@cs.technion.ac.il Abstract Providing

More information

A New Constrained Texture Mapping Method

A New Constrained Texture Mapping Method A New Constrained Texture Mapping Method Yan-Wen Guo 1,2,,JinWang 1,Xiu-FenCui 1, and Qun-Sheng Peng 1,2 1 State Key Lab of CAD&CG, Zhejiang University, Hangzhou 310027, China 2 Department of Mathematics,

More information

Texture Mapping using Surface Flattening via Multi-Dimensional Scaling

Texture Mapping using Surface Flattening via Multi-Dimensional Scaling Texture Mapping using Surface Flattening via Multi-Dimensional Scaling Gil Zigelman Ron Kimmel Department of Computer Science, Technion, Haifa 32000, Israel and Nahum Kiryati Department of Electrical Engineering

More information

Mesh Repairing and Simplification. Gianpaolo Palma

Mesh Repairing and Simplification. Gianpaolo Palma Mesh Repairing and Simplification Gianpaolo Palma Mesh Repairing Removal of artifacts from geometric model such that it becomes suitable for further processing Input: a generic 3D model Output: (hopefully)a

More information

Parallel Computation of Spherical Parameterizations for Mesh Analysis. Th. Athanasiadis and I. Fudos University of Ioannina, Greece

Parallel Computation of Spherical Parameterizations for Mesh Analysis. Th. Athanasiadis and I. Fudos University of Ioannina, Greece Parallel Computation of Spherical Parameterizations for Mesh Analysis Th. Athanasiadis and I. Fudos, Greece Introduction Mesh parameterization is a powerful geometry processing tool Applications Remeshing

More information

Topology-driven Surface Mappings with Robust Feature Alignment

Topology-driven Surface Mappings with Robust Feature Alignment Topology-driven Surface Mappings with Robust Feature Alignment Christopher Carner, Miao Jin, Xianfeng Gu, and Hong Qin Stony Brook University Figure 1: Surface mapping between horse and lizard The color-coding

More information

Morphing Planar Graphs in Spherical Space

Morphing Planar Graphs in Spherical Space Morphing Planar Graphs in Spherical Space Stephen G. Kobourov and Matthew Landis Department of Computer Science University of Arizona {kobourov,mlandis}@cs.arizona.edu Abstract. We consider the problem

More information

Research Article Polygon Morphing and Its Application in Orebody Modeling

Research Article Polygon Morphing and Its Application in Orebody Modeling Mathematical Problems in Engineering Volume 212, Article ID 732365, 9 pages doi:1.1155/212/732365 Research Article Polygon Morphing and Its Application in Orebody Modeling Hacer İlhan and Haşmet Gürçay

More information

Surface Parameterization

Surface Parameterization Surface Parameterization A Tutorial and Survey Michael Floater and Kai Hormann Presented by Afra Zomorodian CS 468 10/19/5 1 Problem 1-1 mapping from domain to surface Original application: Texture mapping

More information

Quadrilateral Remeshing

Quadrilateral Remeshing Quadrilateral Remeshing Kai Hormann Günther Greiner Computer Graphics Group, University of Erlangen-Nürnberg Am Weichselgarten 9, 91058 Erlangen, Germany Email: {hormann, greiner}@informatik.uni-erlangen.de

More information

Topology-driven Surface Mappings with Robust Feature Alignment

Topology-driven Surface Mappings with Robust Feature Alignment Topology-driven Surface Mappings with Robust Feature Alignment Christopher Carner, Miao Jin, Xianfeng Gu, and Hong Qin Stony Brook University Figure 1: Surface mapping between horse and lizard The color-coding

More information

Final Project, Digital Geometry Processing

Final Project, Digital Geometry Processing Final Project, Digital Geometry Processing Shayan Hoshyari Student #: 81382153 December 2016 Introduction In this project an adaptive surface remesher has been developed based on the paper [1]. An algorithm

More information

Metamorphosis of Polyhedral Surfaces using Decomposition

Metamorphosis of Polyhedral Surfaces using Decomposition EUROGRAPHICS 22 / G. Drettakis and H.-P. Seidel (Guest Editors) Volume 2 (22), Number 3 Metamorphosis of Polyhedral Surfaces using Decomposition Shymon Shlafman, Ayellet Tal and Sagi Katz Department of

More information

Segmentation & Constraints

Segmentation & Constraints Siggraph Course Mesh Parameterization Theory and Practice Segmentation & Constraints Segmentation Necessary for closed and high genus meshes Reduce parametric distortion Chartification Texture Atlas Segmentation

More information

coding of various parts showing different features, the possibility of rotation or of hiding covering parts of the object's surface to gain an insight

coding of various parts showing different features, the possibility of rotation or of hiding covering parts of the object's surface to gain an insight Three-Dimensional Object Reconstruction from Layered Spatial Data Michael Dangl and Robert Sablatnig Vienna University of Technology, Institute of Computer Aided Automation, Pattern Recognition and Image

More information

Computer Aided Geometric Design

Computer Aided Geometric Design Computer Aided Geometric Design 28 (2011) 349 356 Contents lists available at ScienceDirect Computer Aided Geometric Design www.elsevier.com/locate/cagd Embedding a triangular graph within a given boundary

More information

Level Set Extraction from Gridded 2D and 3D Data

Level Set Extraction from Gridded 2D and 3D Data Level Set Extraction from Gridded 2D and 3D Data David Eberly, Geometric Tools, Redmond WA 98052 https://www.geometrictools.com/ This work is licensed under the Creative Commons Attribution 4.0 International

More information

Smoothing an Overlay Grid to Minimize Linear Distortion in Texture Mapping

Smoothing an Overlay Grid to Minimize Linear Distortion in Texture Mapping Smoothing an Overlay Grid to Minimize Linear Distortion in Texture Mapping ALLA SHEFFER Computer Science Department, Technion and ERIC DE STURLER Department of Computer Science, University of Illinois

More information

Digital Geometry Processing Parameterization I

Digital Geometry Processing Parameterization I Problem Definition Given a surface (mesh) S in R 3 and a domain find a bective F: S Typical Domains Cutting to a Disk disk = genus zero + boundary sphere = closed genus zero Creates artificial boundary

More information

Comparison and affine combination of generalized barycentric coordinates for convex polygons

Comparison and affine combination of generalized barycentric coordinates for convex polygons Annales Mathematicae et Informaticae 47 (2017) pp. 185 200 http://ami.uni-eszterhazy.hu Comparison and affine combination of generalized barycentric coordinates for convex polygons Ákos Tóth Department

More information

Multiresolution Remeshing Using Weighted Centroidal Voronoi Diagram

Multiresolution Remeshing Using Weighted Centroidal Voronoi Diagram Multiresolution Remeshing Using Weighted Centroidal Voronoi Diagram Chao-Hung Lin 1, Chung-Ren Yan 2, Ji-Hsen Hsu 2, and Tong-Yee Lee 2 1 Dept. of Geomatics, National Cheng Kung University, Taiwan 2 Dept.

More information

Ph.D. Student Vintescu Ana-Maria

Ph.D. Student Vintescu Ana-Maria Ph.D. Student Vintescu Ana-Maria Context Background Problem Statement Strategy Metric Distortion Conformal parameterization techniques Cone singularities Our algorithm Experiments Perspectives Digital

More information

Parameterization of Triangulations and Unorganized Points

Parameterization of Triangulations and Unorganized Points Parameterization of Triangulations and Unorganized Points Michael Floater 1 and Kai Hormann 2 1 SINTEF Applied Mathematics, N-0314 Oslo, Norway 2 University of Erlangen, D-91058 Erlangen, Germany Abstract.

More information

A Robust Procedure to Eliminate Degenerate Faces from Triangle Meshes

A Robust Procedure to Eliminate Degenerate Faces from Triangle Meshes A Robust Procedure to Eliminate Degenerate Faces from Triangle Meshes Mario Botsch, Leif P. Kobbelt Computer Graphics Group, RWTH Aachen, kobbelt,botsch @cs.rwth-aachen.de Abstract When using triangle

More information

Hierarchical Least Squares Conformal Map

Hierarchical Least Squares Conformal Map Hierarchical Least Squares Conformal Map Nicolas RAY Bruno LEVY Abstract A texture atlas is an efficient way to represent information (like colors, normals, displacement maps...) on triangulated surfaces.

More information

Warping and Morphing. Ligang Liu Graphics&Geometric Computing Lab USTC

Warping and Morphing. Ligang Liu Graphics&Geometric Computing Lab USTC Warping and Morphing Ligang Liu Graphics&Geometric Computing Lab USTC http://staff.ustc.edu.cn/~lgliu Metamorphosis "transformation of a shape and its visual attributes" Intrinsic in our environment Deformations

More information

Non-Distorted Texture Mapping Using Angle Based Flattening

Non-Distorted Texture Mapping Using Angle Based Flattening Non-Distorted Texture Mapping Using Angle Based Flattening A. Sheffer and E. de Sturler Abstract: This article introduces a new method for surface parameterization for texture mapping. In the first step

More information

Parameterization II Some slides from the Mesh Parameterization Course from Siggraph Asia

Parameterization II Some slides from the Mesh Parameterization Course from Siggraph Asia Parameterization II Some slides from the Mesh Parameterization Course from Siggraph Asia 2008 1 Non-Convex Non Convex Boundary Convex boundary creates significant distortion Free boundary is better 2 Fixed

More information

Mesh Morphing. Ligang Liu Graphics&Geometric Computing Lab USTC

Mesh Morphing. Ligang Liu Graphics&Geometric Computing Lab USTC Mesh Morphing Ligang Liu Graphics&Geometric Computing Lab USTC http://staff.ustc.edu.cn/~lgliu Morphing Given two objects produce sequence of intermediate objects that gradually evolve from one object

More information

Morphing Planar Graphs in Spherical Space

Morphing Planar Graphs in Spherical Space Morphing Planar Graphs in Spherical Space Stephen G. Kobourov and Matthew Landis Department of Computer Science University of Arizona {kobourov,mlandis}@cs.arizona.edu Abstract. We consider the problem

More information

Morphing Planar Graph Drawings

Morphing Planar Graph Drawings Morphing Planar Graph Drawings Giuseppe Di Battista Università degli Studi Roma Tre The 12th International Conference and Workshops on Algorithms and Computation WALCOM 2018 Basic definitions Graph drawing

More information

Abstract. 1 Introduction. 2 Related Work. Figure 1. Local texture mapping with different sets of feature points.

Abstract. 1 Introduction. 2 Related Work. Figure 1. Local texture mapping with different sets of feature points. Texture Mapping of Images with Arbitrary Contours Nicolas Cherin, Frederic Cordier, Mahmoud Melkemi LMIA, Université de Haute Alsace (LMIA, EA 3993) Mulhouse, France Figure 1. Local texture mapping with

More information

Surface Topology ReebGraph

Surface Topology ReebGraph Sub-Topics Compute bounding box Compute Euler Characteristic Estimate surface curvature Line description for conveying surface shape Extract skeletal representation of shapes Morse function and surface

More information

Cut-and-Paste Editing of Multiresolution Surfaces

Cut-and-Paste Editing of Multiresolution Surfaces Cut-and-Paste Editing of Multiresolution Surfaces Henning Biermann, Ioana Martin, Fausto Bernardini, Denis Zorin NYU Media Research Lab IBM T. J. Watson Research Center Surface Pasting Transfer geometry

More information

Topology-Free Cut-and-Paste Editing over Meshes

Topology-Free Cut-and-Paste Editing over Meshes Topology-Free Cut-and-Paste Editing over Meshes Hongbo Fu, Chiew-Lan Tai, Hongxin Zhang Department of Computer Science Hong Kong University of Science and Technology Abstract Existing cut-and-paste editing

More information

High quality compatible triangulations

High quality compatible triangulations Engineering with Computers (2004) 20: 147 156 DOI 10.1007/s00366-004-0282-6 ORIGINAL PAPER V. Surazhsky Æ C. Gotsman High quality compatible triangulations Received: 18 September 2002 / Accepted: 3 October

More information

Parameterization of Faceted Surfaces for Meshing using Angle-Based Flattening

Parameterization of Faceted Surfaces for Meshing using Angle-Based Flattening Engineering with Computers (2001) 17: 326 337 2001 Springer-Verlag London Limited Parameterization of Faceted Surfaces for Meshing using Angle-Based Flattening A. Sheffer and E. de Sturler Computational

More information

A Hole-Filling Algorithm for Triangular Meshes. Abstract

A Hole-Filling Algorithm for Triangular Meshes. Abstract A Hole-Filling Algorithm for Triangular Meshes Lavanya Sita Tekumalla, Elaine Cohen UUCS-04-019 School of Computing University of Utah Salt Lake City, UT 84112 USA December 20, 2004 Abstract Data obtained

More information

Discrete Geometry Processing

Discrete Geometry Processing Non Convex Boundary Convex boundary creates significant distortion Free boundary is better Some slides from the Mesh Parameterization Course (Siggraph Asia 008) 1 Fixed vs Free Boundary Fixed vs Free Boundary

More information

Assignment 4: Mesh Parametrization

Assignment 4: Mesh Parametrization CSCI-GA.3033-018 - Geometric Modeling Assignment 4: Mesh Parametrization In this exercise you will Familiarize yourself with vector field design on surfaces. Create scalar fields whose gradients align

More information

Preferred directions for resolving the non-uniqueness of Delaunay triangulations

Preferred directions for resolving the non-uniqueness of Delaunay triangulations Preferred directions for resolving the non-uniqueness of Delaunay triangulations Christopher Dyken and Michael S. Floater Abstract: This note proposes a simple rule to determine a unique triangulation

More information

3-D Morphing by Direct Mapping between Mesh Models Using Self-organizing Deformable Model

3-D Morphing by Direct Mapping between Mesh Models Using Self-organizing Deformable Model 3-D Morphing by Direct Mapping between Mesh Models Using Self-organizing Deformable Model Shun Matsui Ken ichi Morooka Hiroshi Nagahashi Tokyo Institute of Technology Kyushu University Tokyo Institute

More information

Bounded-distortion Piecewise Mesh Parameterization

Bounded-distortion Piecewise Mesh Parameterization Bounded-distortion Piecewise Mesh Parameterization Olga Sorkine Daniel Cohen-Or Rony Goldenthal Dani Lischinski School of Computer Science Tel-Aviv University School of Engineering & Computer Science The

More information

Computergrafik. Matthias Zwicker Universität Bern Herbst 2016

Computergrafik. Matthias Zwicker Universität Bern Herbst 2016 Computergrafik Matthias Zwicker Universität Bern Herbst 2016 Today Curves NURBS Surfaces Parametric surfaces Bilinear patch Bicubic Bézier patch Advanced surface modeling 2 Piecewise Bézier curves Each

More information

As a consequence of the operation, there are new incidences between edges and triangles that did not exist in K; see Figure II.9.

As a consequence of the operation, there are new incidences between edges and triangles that did not exist in K; see Figure II.9. II.4 Surface Simplification 37 II.4 Surface Simplification In applications it is often necessary to simplify the data or its representation. One reason is measurement noise, which we would like to eliminate,

More information

TEXTURE mapping technique usually assigns ðu; vþ texture

TEXTURE mapping technique usually assigns ðu; vþ texture 382 IEEE TRANSACTIONS ON VISUALIZATION AND COMPUTER GRAPHICS, VOL. 14, NO. 2, MARCH/APRIL 2008 Texture Mapping with Hard Constraints Using Warping Scheme Tong-Yee Lee, Member, IEEE, Shao-Wei Yen, and I-Cheng

More information

Bounded-distortion Piecewise Mesh Parameterization

Bounded-distortion Piecewise Mesh Parameterization Bounded-distortion Piecewise Mesh Parameterization Olga Sorkine Daniel Cohen-Or Rony Goldenthal Dani Lischinski School of Computer Science Tel-Aviv University School of Engineering & Computer Science The

More information

Geodesic Paths on Triangular Meshes

Geodesic Paths on Triangular Meshes Geodesic Paths on Triangular Meshes Dimas Martínez Luiz Velho Paulo Cezar Carvalho IMPA Instituto Nacional de Matemática Pura e Aplicada Estrada Dona Castorina, 110, 22460-320 Rio de Janeiro, RJ, Brasil

More information

AN ADAPTABLE SURFACE PARAMETERIZATION METHOD

AN ADAPTABLE SURFACE PARAMETERIZATION METHOD AN ADAPTABLE SURFACE PARAMETERIZATION METHOD P. Degener, J. Meseth and R. Klein University of Bonn Institute of Computer Science II Römerstrasse 164 D-53117 Bonn, Germany August 12, 23 ABSTRACT Parameterizations

More information

Surface Reconstruction. Gianpaolo Palma

Surface Reconstruction. Gianpaolo Palma Surface Reconstruction Gianpaolo Palma Surface reconstruction Input Point cloud With or without normals Examples: multi-view stereo, union of range scan vertices Range scans Each scan is a triangular mesh

More information

Voronoi Diagram. Xiao-Ming Fu

Voronoi Diagram. Xiao-Ming Fu Voronoi Diagram Xiao-Ming Fu Outlines Introduction Post Office Problem Voronoi Diagram Duality: Delaunay triangulation Centroidal Voronoi tessellations (CVT) Definition Applications Algorithms Outlines

More information

GEOMETRIC LIBRARY. Maharavo Randrianarivony

GEOMETRIC LIBRARY. Maharavo Randrianarivony GEOMETRIC LIBRARY Maharavo Randrianarivony During the last four years, I have maintained a numerical geometric library. The constituting routines, which are summarized in the following list, are implemented

More information

Parameterization with Manifolds

Parameterization with Manifolds Parameterization with Manifolds Manifold What they are Why they re difficult to use When a mesh isn t good enough Problem areas besides surface models A simple manifold Sphere, torus, plane, etc. Using

More information

3-Dimensional Object Modeling with Mesh Simplification Based Resolution Adjustment

3-Dimensional Object Modeling with Mesh Simplification Based Resolution Adjustment 3-Dimensional Object Modeling with Mesh Simplification Based Resolution Adjustment Özgür ULUCAY Sarp ERTÜRK University of Kocaeli Electronics & Communication Engineering Department 41040 Izmit, Kocaeli

More information

Parameterization of triangular meshes

Parameterization of triangular meshes Parameterization of triangular meshes Michael S. Floater November 10, 2009 Triangular meshes are often used to represent surfaces, at least initially, one reason being that meshes are relatively easy to

More information

Parameterization. Michael S. Floater. November 10, 2011

Parameterization. Michael S. Floater. November 10, 2011 Parameterization Michael S. Floater November 10, 2011 Triangular meshes are often used to represent surfaces, at least initially, one reason being that meshes are relatively easy to generate from point

More information

3D Geometric Metamorphosis based on Harmonic Map

3D Geometric Metamorphosis based on Harmonic Map 3D Geometric Metamorphosis based on Harmonic Map Takashi KANAI Hiromasa SUZUKI Fumihiko KIMURA Department of Precision Machinery Engineering The University of Tokyo 7-3-1, Hongo, Bunkyo-ku, Tokyo 113,

More information

2D rendering takes a photo of the 2D scene with a virtual camera that selects an axis aligned rectangle from the scene. The photograph is placed into

2D rendering takes a photo of the 2D scene with a virtual camera that selects an axis aligned rectangle from the scene. The photograph is placed into 2D rendering takes a photo of the 2D scene with a virtual camera that selects an axis aligned rectangle from the scene. The photograph is placed into the viewport of the current application window. A pixel

More information

Manipulating the Boundary Mesh

Manipulating the Boundary Mesh Chapter 7. Manipulating the Boundary Mesh The first step in producing an unstructured grid is to define the shape of the domain boundaries. Using a preprocessor (GAMBIT or a third-party CAD package) you

More information

Lecture 25: Bezier Subdivision. And he took unto him all these, and divided them in the midst, and laid each piece one against another: Genesis 15:10

Lecture 25: Bezier Subdivision. And he took unto him all these, and divided them in the midst, and laid each piece one against another: Genesis 15:10 Lecture 25: Bezier Subdivision And he took unto him all these, and divided them in the midst, and laid each piece one against another: Genesis 15:10 1. Divide and Conquer If we are going to build useful

More information

THE FORCE DENSITY METHOD: A BRIEF INTRODUCTION

THE FORCE DENSITY METHOD: A BRIEF INTRODUCTION Technical Report TR-NCCA-2011-02 THE FORCE DENSITY METHOD: A BRIEF INTRODUCTION Richard Southern The National Centre for Computer Animation Bournemouth Media School Bournemouth University Talbot Campus,

More information

Mesh morphing using polycube-based cross-parameterization

Mesh morphing using polycube-based cross-parameterization COMPUTER ANIMATION AND VIRTUAL WORLDS Comp. Anim. Virtual Worlds 2005; 16: 499 508 Published online in Wiley InterScience (www.interscience.wiley.com). DOI: 10.1002/cav.92 Animating Geometrical Models

More information

Cross-Parameterization and Compatible Remeshing of 3D Models

Cross-Parameterization and Compatible Remeshing of 3D Models Cross-Parameterization and Compatible Remeshing of 3D Models Vladislav Kraevoy Alla Sheffer University of British Columbia Authors Vladislav Kraevoy Ph.D. Student Alla Sheffer Assistant Professor Outline

More information

Mesh Simplification. Mesh Simplification. Mesh Simplification Goals. Mesh Simplification Motivation. Vertex Clustering. Mesh Simplification Overview

Mesh Simplification. Mesh Simplification. Mesh Simplification Goals. Mesh Simplification Motivation. Vertex Clustering. Mesh Simplification Overview Mesh Simplification Mesh Simplification Adam Finkelstein Princeton University COS 56, Fall 008 Slides from: Funkhouser Division, Viewpoint, Cohen Mesh Simplification Motivation Interactive visualization

More information

All the Polygons You Can Eat. Doug Rogers Developer Relations

All the Polygons You Can Eat. Doug Rogers Developer Relations All the Polygons You Can Eat Doug Rogers Developer Relations doug@nvidia.com Future of Games Very high resolution models 20,000 triangles per model Lots of them Complex Lighting Equations Floating point

More information

Geometric Modeling. Bing-Yu Chen National Taiwan University The University of Tokyo

Geometric Modeling. Bing-Yu Chen National Taiwan University The University of Tokyo Geometric Modeling Bing-Yu Chen National Taiwan University The University of Tokyo Surface Simplification Motivation Basic Idea of LOD Discrete LOD Continuous LOD Simplification Problem Characteristics

More information

Motivation. towards more realism. + Texture Mapping Texture Mapping

Motivation. towards more realism. + Texture Mapping Texture Mapping Texture Mapping Wireframe Model + Lighting & Shading Motivation + Texture Mapping http://www.3drender.com/jbirn/productions.html towards more realism 2 Idea Add surface detail without raising geometric

More information

2) For any triangle edge not on the boundary, there is exactly one neighboring

2) For any triangle edge not on the boundary, there is exactly one neighboring Triangulating Trimmed NURBS Surfaces Chang Shu and Pierre Boulanger Abstract. This paper describes techniques for the piecewise linear approximation of trimmed NURBS surfaces. The problem, called surface

More information

Interpolatory 3-Subdivision

Interpolatory 3-Subdivision EUROGRAPHICS 2000 / M. Gross and F.R.A. Hopgood (Guest Editors) Volume 19 (2000), Number 3 Interpolatory 3-Subdivision U. Labsik G. Greiner Computer Graphics Group University of Erlangen-Nuremberg Am Weichselgarten

More information

Multiresolution Computation of Conformal Structures of Surfaces

Multiresolution Computation of Conformal Structures of Surfaces Multiresolution Computation of Conformal Structures of Surfaces Xianfeng Gu Yalin Wang Shing-Tung Yau Division of Engineering and Applied Science, Harvard University, Cambridge, MA 0138 Mathematics Department,

More information

Mesh Parameterization Methods and their Applications

Mesh Parameterization Methods and their Applications Mesh Parameterization Methods and their Applications Alla Sheffer Emil Praun Kenneth Rose University of British Columbia Google University of British Columbia Abstract We present a survey of recent methods

More information

Cross-Parameterization and Compatible Remeshing of 3D Models

Cross-Parameterization and Compatible Remeshing of 3D Models Cross-Parameterization and Compatible Remeshing of 3D Models Vladislav Kraevoy Alla Sheffer University of British Columbia, {vlady sheffa}@cs.ubc.ca Abstract Figure 1: Applications: (left) texture transfer

More information

Template Based Mesh Completion

Template Based Mesh Completion Template Based Mesh Completion Vladislav Kraevoy Alla Sheffer Department of Computer Science Problem Given mesh with holes (& multiple components) complete holes and gaps Topology Connectivity Geometry

More information

Geodesic Paths on Triangular Meshes

Geodesic Paths on Triangular Meshes Geodesic Paths on Triangular Meshes DIMAS MARTÍNEZ, LUIZ VELHO, PAULO CEZAR CARVALHO IMPA Instituto Nacional de Matemática Pura e Aplicada - Estrada Dona Castorina, 110, 22460-320 Rio de Janeiro, RJ, Brasil

More information

04 - Normal Estimation, Curves

04 - Normal Estimation, Curves 04 - Normal Estimation, Curves Acknowledgements: Olga Sorkine-Hornung Normal Estimation Implicit Surface Reconstruction Implicit function from point clouds Need consistently oriented normals < 0 0 > 0

More information

Shape Blending Using the Star-Skeleton Representation

Shape Blending Using the Star-Skeleton Representation Shape Blending Using the Star-Skeleton Representation Michal Shapira Ari Rappoport Institute of Computer Science, The Hebrew University of Jerusalem Jerusalem 91904, Israel. arir@cs.huji.ac.il Abstract:

More information

Decoration of plastic objects using multi view-dependent textures

Decoration of plastic objects using multi view-dependent textures Decoration of plastic objects using multi view-dependent textures Maxime Belperin, Sylvain Brandel & David Coeurjolly Universite de Lyon, CNRS Universite Lyon 1, LIRIS, UMR5205, F-69622, France {maxime.belperin,sylvain.brandel,david.coeurjolly}@liris.cnrs.fr

More information

A Global Laplacian Smoothing Approach with Feature Preservation

A Global Laplacian Smoothing Approach with Feature Preservation A Global Laplacian Smoothing Approach with Feature Preservation hongping Ji Ligang Liu Guojin Wang Department of Mathematics State Key Lab of CAD&CG hejiang University Hangzhou, 310027 P.R. China jzpboy@yahoo.com.cn,

More information

Invariant shape similarity. Invariant shape similarity. Invariant similarity. Equivalence. Equivalence. Equivalence. Equal SIMILARITY TRANSFORMATION

Invariant shape similarity. Invariant shape similarity. Invariant similarity. Equivalence. Equivalence. Equivalence. Equal SIMILARITY TRANSFORMATION 1 Invariant shape similarity Alexer & Michael Bronstein, 2006-2009 Michael Bronstein, 2010 tosca.cs.technion.ac.il/book 2 Invariant shape similarity 048921 Advanced topics in vision Processing Analysis

More information

A Short Survey of Mesh Simplification Algorithms

A Short Survey of Mesh Simplification Algorithms A Short Survey of Mesh Simplification Algorithms Jerry O. Talton III University of Illinois at Urbana-Champaign 1. INTRODUCTION The problem of approximating a given input mesh with a less complex but geometrically

More information

A Developer s Survey of Polygonal Simplification algorithms. CS 563 Advanced Topics in Computer Graphics Fan Wu Mar. 31, 2005

A Developer s Survey of Polygonal Simplification algorithms. CS 563 Advanced Topics in Computer Graphics Fan Wu Mar. 31, 2005 A Developer s Survey of Polygonal Simplification algorithms CS 563 Advanced Topics in Computer Graphics Fan Wu Mar. 31, 2005 Some questions to ask Why simplification? What are my models like? What matters

More information

Geometric Modeling Mortenson Chapter 11. Complex Model Construction

Geometric Modeling Mortenson Chapter 11. Complex Model Construction Geometric Modeling 91.580.201 Mortenson Chapter 11 Complex Model Construction Topics Topology of Models Connectivity and other intrinsic properties Graph-Based Models Emphasize topological structure Boolean

More information

Vectorization Using Stochastic Local Search

Vectorization Using Stochastic Local Search Vectorization Using Stochastic Local Search Byron Knoll CPSC303, University of British Columbia March 29, 2009 Abstract: Stochastic local search can be used for the process of vectorization. In this project,

More information

Computer Graphics Prof. Sukhendu Das Dept. of Computer Science and Engineering Indian Institute of Technology, Madras Lecture - 24 Solid Modelling

Computer Graphics Prof. Sukhendu Das Dept. of Computer Science and Engineering Indian Institute of Technology, Madras Lecture - 24 Solid Modelling Computer Graphics Prof. Sukhendu Das Dept. of Computer Science and Engineering Indian Institute of Technology, Madras Lecture - 24 Solid Modelling Welcome to the lectures on computer graphics. We have

More information

Physically-Based Modeling and Animation. University of Missouri at Columbia

Physically-Based Modeling and Animation. University of Missouri at Columbia Overview of Geometric Modeling Overview 3D Shape Primitives: Points Vertices. Curves Lines, polylines, curves. Surfaces Triangle meshes, splines, subdivision surfaces, implicit surfaces, particles. Solids

More information

Single Triangle Strip and Loop on Manifolds with Boundaries

Single Triangle Strip and Loop on Manifolds with Boundaries Single Triangle Strip and Loop on Manifolds with Boundaries Pablo Diaz-Gutierrez David Eppstein M. Gopi Department of Computer Science, University of California, Irvine. Abstract The single triangle-strip

More information

Mathematical Surface Representations for Conceptual Design

Mathematical Surface Representations for Conceptual Design Mathematical Surface Representations for Conceptual Design Karan Singh University of Toronto Ravin Balakrishnan (U of T) Eugene Fiume (U of T) Pierre Poulin (U of Montreal) Michiel van de Panne (UBC) Richard

More information

A General Simplification Algorithm

A General Simplification Algorithm A General Simplification Algorithm Boštjan Pivec, Vid Domiter Abstract In this article a new general algorithm for triangular mesh simplification is proposed. The algorithm extends Krivograd's work from

More information

DISCRETE DIFFERENTIAL GEOMETRY

DISCRETE DIFFERENTIAL GEOMETRY AMS SHORT COURSE DISCRETE DIFFERENTIAL GEOMETRY Joint Mathematics Meeting San Diego, CA January 2018 DISCRETE CONFORMAL GEOMETRY AMS SHORT COURSE DISCRETE DIFFERENTIAL GEOMETRY Joint Mathematics Meeting

More information

Geometric structures on manifolds

Geometric structures on manifolds CHAPTER 3 Geometric structures on manifolds In this chapter, we give our first examples of hyperbolic manifolds, combining ideas from the previous two chapters. 3.1. Geometric structures 3.1.1. Introductory

More information

Interactive Multiresolution Editing of Arbitrary Meshes

Interactive Multiresolution Editing of Arbitrary Meshes EUROGRAPHICS 99 / P. Brunet and R. Scopigno (Guest Editors) Volume 18 (1999), Number 3 Interactive Multiresolution Editing of Arbitrary Meshes Seungyong Lee Department of Computer Science and Engineering

More information

L1 - Introduction. Contents. Introduction of CAD/CAM system Components of CAD/CAM systems Basic concepts of graphics programming

L1 - Introduction. Contents. Introduction of CAD/CAM system Components of CAD/CAM systems Basic concepts of graphics programming L1 - Introduction Contents Introduction of CAD/CAM system Components of CAD/CAM systems Basic concepts of graphics programming 1 Definitions Computer-Aided Design (CAD) The technology concerned with the

More information

Multi-Scale Free-Form Surface Description

Multi-Scale Free-Form Surface Description Multi-Scale Free-Form Surface Description Farzin Mokhtarian, Nasser Khalili and Peter Yuen Centre for Vision Speech and Signal Processing Dept. of Electronic and Electrical Engineering University of Surrey,

More information

Interpolating and approximating scattered 3D-data with hierarchical tensor product B-splines

Interpolating and approximating scattered 3D-data with hierarchical tensor product B-splines Interpolating and approximating scattered 3D-data with hierarchical tensor product B-splines Günther Greiner Kai Hormann Abstract In this note we describe surface reconstruction algorithms based on optimization

More information

Kai Hormann, N. Sukumar. Generalized Barycentric Coordinates in Computer Graphics and Computational Mechanics

Kai Hormann, N. Sukumar. Generalized Barycentric Coordinates in Computer Graphics and Computational Mechanics Kai Hormann, N. Sukumar Generalized Barycentric Coordinates in Computer Graphics and Computational Mechanics Contents Chapter 1 Multi-Sided Patches via Barycentric Coordinates 1 Scott Schaefer 1.1 INTRODUCTION

More information

Parameterization using Manifolds

Parameterization using Manifolds International Journal of Shape Modeling c World Scientific Publishing Company Parameterization using Manifolds Cindy M. Grimm Dept. of Computer Science and Engineering, Washington University in St. Louis,

More information