WO2013123636A1 - Method and apparatus for mesh simplification - Google Patents

Method and apparatus for mesh simplification Download PDF

Info

Publication number
WO2013123636A1
WO2013123636A1 PCT/CN2012/071349 CN2012071349W WO2013123636A1 WO 2013123636 A1 WO2013123636 A1 WO 2013123636A1 CN 2012071349 W CN2012071349 W CN 2012071349W WO 2013123636 A1 WO2013123636 A1 WO 2013123636A1
Authority
WO
WIPO (PCT)
Prior art keywords
vertex
mesh
edge
adjacent vertices
repetitive structure
Prior art date
Application number
PCT/CN2012/071349
Other languages
French (fr)
Inventor
Tao Luo
Kangying Cai
Jiang Tian
Original Assignee
Thomson Licensing
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Thomson Licensing filed Critical Thomson Licensing
Priority to EP12869322.3A priority Critical patent/EP2817783A4/en
Priority to US14/379,258 priority patent/US20150379769A1/en
Priority to PCT/CN2012/071349 priority patent/WO2013123636A1/en
Publication of WO2013123636A1 publication Critical patent/WO2013123636A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T17/00Three dimensional [3D] modelling, e.g. data description of 3D objects
    • G06T17/20Finite element generation, e.g. wire-frame surface description, tesselation
    • G06T17/205Re-meshing

Definitions

  • the present invention generally relates to computer graphics.
  • the present invention relates to a method and apparatus for mesh simplification.
  • Mesh simplification is a technology of approximating a given input mesh with a less complex but geometrically faithful representation, which becomes a hot research topic in computer graphics.
  • Simplified meshes generated by the mesh simplification can improve efficiency in rendering and real-time applications, such as virtual reality and scientific visualization.
  • Mesh simplification is also an important geometric processing operation for many higher-level processing steps, such as mesh compression, progressive transmission, editing operation, smoothing, parameterization and shape reconstruction.
  • Figure 1 is a diagram showing the principle of a mesh simplification.
  • the left-most model is a given input model and the other three models from the left to the right are simplified ones representing three levels of detail of the given input model. That is, different levels of detail representation can be generated for a given mesh model.
  • Figure 1 shows a quadrilateral mesh model as an illustrative example, in which case the mesh is composed of only quadrilateral elements. It can be seen that the meshes from left to right consist of less and less vertices, which can be realized through a successive process, such as edge collapse which will be described later. Furthermore, for different applications, different attributes of the given mesh model may be employed during edge collapse.
  • the maintenance of quadrilateral connectivity or topological genus has been taken into account. Thus, all of the simplified meshes depict similar shapes compared to the original model.
  • the simplification procedure can be controlled by user defined quality criteria, including geometric distance or visual appearance.
  • the computational complexity of the vertex clustering algorithm is a linear function of the number of vertices. However, the quality of the resulting meshes is not always satisfactory.
  • the incremental algorithm can take a user defined criterion to generate higher quality simplified meshes. However, the total computation complexity in the average case is Q ⁇ E ) (n denotes the number of vertices) and can go up to [;n- ⁇ j n a W orst case, especially when a global error threshold is to be respected.
  • the resampling algorithm is the most commonly-used approach in mesh simplification, in which a completely new mesh is constructed by connecting resampling points. However, alias errors can occur if the sampling pattern is not perfectly aligned to geometric features.
  • FIG. 2 is a diagram showing the principle of an edge collapse simplification.
  • an edge collapse transformation unifies two adjacent vertices v1 and v2 into a single vertex v.
  • the two grey triangles vanish and a new position is specified for the unified vertex in the process.
  • a given mesh model can be simplified into a coarser mesh by applying a sequence of successive edge collapse transformations.
  • a carefully chosen sequence of edge collapse can control the quality of the approximating meshes.
  • a method for mesh simplification is provided.
  • an iterative edge collapse transformation is carried out to simplify an input mesh model, each edge collapse unifying two adjacent vertices of the input mesh model into a single vertex.
  • the method further comprises: carrying out an edge collapse for an edge formed by two adjacent vertices in ascending order of a cost value which is determined as a function of the scales of the two adjacent vertices in the hierarchical repetitive structure of the input mesh model and geometric attributes of the two adjacent vertices.
  • an apparatus for mesh simplification comprises: means for detecting repetitive structures of the input mesh model at all scales; means for determining whether each vertex of the input mesh model belongs to the repetitive structure and associating each vertex belonging to a repetitive structure with a scale value which corresponds to the scale of the vertex in the detected hierarchical repetitive structure; means for calculating a visual importance for each vertex as a function of the scale value and its geometric attributes; means for modifying a quadric error metric of each vertex according to the calculated visual importance of each vertex; means for calculating a cost value of each edge formed by two adjacent vertices according to the modified quadric error metrics of the two adjacent vertices; and means for carrying out an edge collapse to an edge in ascending order of the cost value.
  • Figure 1 is a diagram showing the principle of a mesh simplification according to prior art
  • Figure 2 is a diagram showing the principle of an edge collapse simplification
  • Figure 3 is a diagram showing the flowchart of a method for mesh simplification according to an embodiment of the invention.
  • Figure 4 is a block diagram showing an example of the hierarchical repetitive structure graph organized according to an embodiment of the present invention.
  • Figure 5 is a diagram showing parameters for calculating a visual importance of a vertex in the input mesh model.
  • FIG. 6 is a block diagram showing an apparatus for mesh simplification according to an embodiment of the invention.
  • DETAILED DESCRIPTION An embodiment of the present invention will now be described in detail in conjunction with the drawings. In the following description, some detailed descriptions of known functions and configurations may be omitted for conciseness.
  • a method for mesh simplification wherein multi-scale repetitive structures detected on an input mesh can be preserved at different levels of detail.
  • the method of mesh simplification according to an embodiment of the invention can be driven by edge collapses.
  • a conventional mesh simplification based on edge collapse only considers the attributes of the vertices, by which the cost of each edge collapse transformation can be calculated, which is employed to carefully chose a sequence of these transformations.
  • Each edge collapse unifies two adjacent vertices into a new vertex in the simplifying process.
  • the high-level structures cannot be preserved in lower-level simplified representation without consideration of high-level properties of the surface.
  • a new definition of visual importance is provided for each vertex by considering the geometric attributes as well as the multi- scale repetitive structures. The visual importance can be used to enhance the traditional quadric error metric to control the edge collapse, which makes the simplified meshes preserve the geometric features as well as the high-level repetitive structures. After each edge collapse, the visual importance and quadric error metric should be updated.
  • the simplified meshes at different levels of detail can be generated by iterative edge collapse.
  • the procedure is stopped by an assigned threshold about the geometric error with the original mesh or a fixed number of iterations.
  • the proposed method can construct the multi-resolution representation of the given mesh model efficiently.
  • Figure 3 is a diagram showing the flowchart of a method for mesh simplification according to an embodiment of the invention.
  • a triangular mesh model is taken as an example.
  • the invention is also applicable to other polygonal mesh models, such as a quadrilateral mesh.
  • the invention can also be applied by constructing the local neighborhoods to find possible point pairs as edges.
  • step S301 repetitive structures of the mesh model at all scales are detected.
  • the method described in the international patent application PCT/CN2010/000984, Kangying Cai et al, "Method and apparatus for detecting repetitive structures in 3D mesh models" can be used.
  • a subsequent clustering step will be more likely to discover all the repetitive structures.
  • the model comprises repetitive structures, the usual result of such clustering is that one or more distinct clusters will emerge.
  • the (most relevant) clusters are selected, and the corresponding transformations and sampling point pairs are assumed to indicate a repetitive structure.
  • the most relevant clusters are those which are most significant and apparent. Other transformations that don't belong to a cluster are discarded.
  • This procedure is iteratively executed with a decreasing sampling step. Each iteration skips repetitions, and only processes remaining parts of the model and representatives of the representative structures that were detected in the previous iteration.
  • multi-scale repetitive structures on the 3D model can be discovered.
  • the iterative process stops when the number of repetitive structures is stable, or when a pre-defined minimum sampling step size is reached. It is also possible to define a time-out, measure the runtime of the process, and terminate the process when the runtime exceeds the time-out. Based on the foregoing, a multi-scale repetitive structures detection of the input model mesh model M can be achieved by PCT/CN2010/000984, the result of which can be used in the embodiment of the present invention.
  • the detected repetitive structures of the mesh model can be represented by a graph at different scales.
  • Figure 4 is a block diagram showing an example of the hierarchical repetitive structure graph organized according to an embodiment of the present invention.
  • the number of levels is determined once the iterative detecting process stops under a condition that the number of repetitive structures is stable, or a pre-defined minimum sampling step size is reached, or the runtime exceeds the time-out.
  • the number of the levels in the graph is H+1.
  • the top level (level 0) corresponds to the biggest scale of the repetitive structures that can be discovered, which is the scale of the input model when the whole input model is regarded as the biggest repetitive structure.
  • the bottom level (level H) corresponds to the smallest scale of the repetitive structures that can be discovered from the input model.
  • Each node in the graph represents a repetitive structure, which consists of a representative and several instances, if any.
  • the nodes belonging to the same level correspond to all repetitive structures discovered at the same scale.
  • the only node in level 0 only includes a representative, which is the whole input model, and has no instance.
  • An arrow in the graph means the repetitive structure representative of the starting node includes the repetitive structure representative and/or instances of the end node. The start and end node of an arrow are called the parent and child repetitive structure respectively.
  • the parent repetitive structure representative includes the child repetitive structure representative
  • a repetitive structure representative in the hierarchical repetition structure graph is composed of not only its representative geometry but also some instances of its child repetitive structures, if any.
  • a repetitive structure instance is represented by the transformation between the corresponding representative and itself.
  • step S302 it is determined for each vertex of the mesh model on whether it belongs to a repetitive structure and associate each vertex belonging to a repetitive structure with a corresponding scale value s(v) which corresponds to the scale of vertex v or the reciprocal of the level I (l ⁇ 0) in the hierarchical repetitive structure graph.
  • the visual importance w(v) of each vertex can be computed using its corresponding scale value s(v) and the areas and normal vectors of its incident triangles, which is employed to prevent the decimation of visually important parts.
  • s(v) the scale value
  • s(v) the areas and normal vectors of its incident triangles
  • .4* is the area of an incident triangle of ? ⁇ and n,- is the normal vector of the incident triangle, j indicates the index of an incident triangle of a vertex, as shown in Figure 5. It can be seen intuitively that if the vertex is a flat vertex, 3 ⁇ 4( ⁇ ⁇ ⁇ ) would be zero, which means that the vertex would be decimated.
  • the multi-scale repetitive structures detected on the given input mesh are taken into account to enhance the definition of visual importance. Taking the scale value siv ol the detected repetitive structure into account, we define the visual importance as:
  • a quadric error metric of each vertex E(v) is computed.
  • the geometric error caused by a simplification is characterized heuristically, where a set of planes are associated with each vertex and the error of the vertex with respect to this set is defined as the sum of squared distances to its planes.
  • a quadric error metric can be defined for each vertex to control the edge collapse.
  • the error of a vertex after the edge collapse is computed as the sum of squared distances to its associated planes.
  • the error quadric is denoted by a symmetric matrix Q and the error £(v) at vertex v—
  • the quadric error metric of each vertex E(v) is modified according to the result of step S304.
  • the modified quadric error metric involves the basic geometric error as well as a visual importance related to the detected repetitive structures. That is, the modified quadric error metric E * (v) is defined as the quadric error metric E(v) weighted by its visual importance:
  • E ' iv) wi ) ⁇ (r ⁇ .
  • w(v) is the visual importance defined above for each vertex.
  • the cost of each edge collapse is calculated using the modified quadric error metrics of its end vertices and sorted ascendingly. For each edge, vi and v 2 denote the two end vertices while w(vi)Qi and w(v 2 )Q2 correspond to their modified error quadric respectively.
  • the optimal contraction target 3 ⁇ 4 r is computed for each edge (3 ⁇ 43 ⁇ 4 .,3 ⁇ 4 ⁇ ).
  • the cost of an edge can be expressed by the error of the target vertex
  • all of the edges are stored in a priority queue according to the ascending order of these cost values, which determines the order of edge collapse.
  • the edge with minimum cost is first contracted during the process of edge collapse. Similar to Figure 2, the edge (3 ⁇ 4 ,3 ⁇ 4) is contracted into a single point y . The vertices 3 ⁇ 4 and ? 2 are unified into v. All the incident edges are connected to 3 ⁇ 4 and the vertex 3 ⁇ 4 is deleted. And any degenerate edges or faces are removed in this step.
  • the position of the new vertex and its adjacency are updated accordingly. Its corresponding scale s(v) is determined as the minimum scale value at the end vertices, that is, min ⁇ s ⁇ vi), s ⁇ v 2 )).
  • the simplification process can be controlled by setting the final number of vertices or levels of simplified meshes.
  • the simplification is stopped. Otherwise, the cost of edge collapse is recomputed at the step S31 1 . According to the updated vertex and its neighborhoods, the cost values of new generated edges are calculated using the above modified quadric error metric. Thus, the priority queue of edges is also updated. And then the edge collapse continued until the simplification goal is satisfied.
  • the iterative procedure can generate a sequence of mesh models, which can be used as the multi-resolution representation of the input mesh. On the final simplified meshes, the repetitive structures will be preserved as well as the geometric features.
  • An embodiment of the present invention also provides an apparatus for implementation of the method for mesh simplification described above.
  • the apparatus is adapted for carrying out an edge collapse for an edge formed by two adjacent vertices in ascending order of a cost value which is determined as a function of the scales of the two adjacent vertices in the hierarchical repetitive structure of the input mesh model and geometric attributes of the two adjacent vertices.
  • FIG. 6 is a block diagram showing an apparatus for mesh simplification according to an embodiment of the invention.
  • the apparatus 600 comprises a detecting means 601 for detecting repetitive structures of the input mesh model at all scales, and a determining means 602 for determining whether each vertex of the input mesh model belongs to the repetitive structure and associating each vertex belonging to a repetitive structure with a scale value which corresponds to the scale of the vertex in the detected hierarchical repetitive structure.
  • the apparatus further comprises a calculating means 603 for calculating a visual importance for each vertex as a function of the scale value and its geometric attributes and a modifying means 604 for modifying a quadric error metric of each vertex according to the calculated visual importance of each vertex from the calculating means 603.
  • the apparatus further comprises a calculating means 605 for calculating a cost value of each edge formed by two adjacent vertices according to the modified quadric error metrics of the two adjacent vertices, and an edge collapse means 606 for carrying out an edge collapse to an edge in ascending order of the cost value.
  • repetitive structures of an input mesh model is taken into account to generate the multi-resolution representation of the mesh model, which can preserve the high-level structures even at low levels of detail.

Landscapes

  • Physics & Mathematics (AREA)
  • Engineering & Computer Science (AREA)
  • Computer Graphics (AREA)
  • Geometry (AREA)
  • Software Systems (AREA)
  • General Physics & Mathematics (AREA)
  • Theoretical Computer Science (AREA)
  • Image Generation (AREA)
  • Image Analysis (AREA)

Abstract

The invention provides a method and apparatus for mesh simplification. In the method, an iterative edge collapse transformation is carried out to simplify an input mesh model, each edge collapse unifying two adjacent vertices of the input mesh model into a single vertex. The method further comprises: carrying out an edge collapse for an edge formed by two adjacent vertices in ascending order of a cost value which is determined as a function of the scales of the two adjacent vertices in the hierarchical repetitive structure of the input mesh model and geometric attributes of the two adjacent vertices.

Description

METHOD AND APPARATUS FOR MESH SIMPLIFICATION TECHNICAL FIELD
The present invention generally relates to computer graphics. In particular, the present invention relates to a method and apparatus for mesh simplification.
BACKGROUND
Mesh simplification is a technology of approximating a given input mesh with a less complex but geometrically faithful representation, which becomes a hot research topic in computer graphics. Simplified meshes generated by the mesh simplification can improve efficiency in rendering and real-time applications, such as virtual reality and scientific visualization. Mesh simplification is also an important geometric processing operation for many higher-level processing steps, such as mesh compression, progressive transmission, editing operation, smoothing, parameterization and shape reconstruction.
Figure 1 is a diagram showing the principle of a mesh simplification. As shown in Figure 1 , the left-most model is a given input model and the other three models from the left to the right are simplified ones representing three levels of detail of the given input model. That is, different levels of detail representation can be generated for a given mesh model. Figure 1 shows a quadrilateral mesh model as an illustrative example, in which case the mesh is composed of only quadrilateral elements. It can be seen that the meshes from left to right consist of less and less vertices, which can be realized through a successive process, such as edge collapse which will be described later. Furthermore, for different applications, different attributes of the given mesh model may be employed during edge collapse. Here in Figure 1 , the maintenance of quadrilateral connectivity or topological genus has been taken into account. Thus, all of the simplified meshes depict similar shapes compared to the original model.
A number of algorithms have been proposed to simplify mesh models with specific properties of the original data being preserved as well as possible. The simplification procedure can be controlled by user defined quality criteria, including geometric distance or visual appearance.
Conventional methods can be classified into several categories: the vertex clustering algorithm, the incremental decimation algorithm and the resampling algorithm. The computational complexity of the vertex clustering algorithm is a linear function of the number of vertices. However, the quality of the resulting meshes is not always satisfactory. The incremental algorithm can take a user defined criterion to generate higher quality simplified meshes. However, the total computation complexity in the average case is Q{^E ) (n denotes the number of vertices) and can go up to [;n- } jn a Worst case, especially when a global error threshold is to be respected. The resampling algorithm is the most commonly-used approach in mesh simplification, in which a completely new mesh is constructed by connecting resampling points. However, alias errors can occur if the sampling pattern is not perfectly aligned to geometric features.
In a publication 1 , H. Hoppe, Progressive meshes, In SIGGRAPH '96:
Proceedings of the 23rd annual conference on Computer graphics and interactive techniques (New York, NY, USA, 1996), ACM, pp. 99-108, the edge collapse operator for mesh simplification was firstly introduced. Figure 2 is a diagram showing the principle of an edge collapse simplification. As shown in Figure 2, an edge collapse transformation unifies two adjacent vertices v1 and v2 into a single vertex v. The two grey triangles vanish and a new position is specified for the unified vertex in the process. Thus, a given mesh model can be simplified into a coarser mesh by applying a sequence of successive edge collapse transformations. Moreover, a carefully chosen sequence of edge collapse can control the quality of the approximating meshes.
In a publication 2, M. Garland, P. Heckbert, Surface simplification using quadric error metrics, in SIGGRAPH '97: Proceedings of the 24th annual conference on Computer graphics and interactive techniques (New York, NY, USA, 1997), ACM Press/Addison-Wesley Publishing Co., pp. 209-216, it is proposed to modify the above-described edge collapse method to introduce quadratic error metric (QEM) for controlling the order of simplification. The error/importance of a vertex can be computed as the sum of its squared distances to the supporting planes of its incident triangles. A generalization of QEM has been presented to simplify surfaces with vertex properties such as color and texture. QEM can be enhanced to consider the color information on surfaces.
In a publication 3, T. Boubekeur, M. Alexa, Mesh Simplification by Stochastic
Sampling and Topological Clustering, Computer and Graphics (Special Issue on IEEE Shape Modeling International 2009), vol.33, no.3, 241 -249, 2009, TOPSTOC was proposed for mesh simplification, including stochastic vertex selection and re- indexing of triangles, which can preserve geometrical and topological features.
However, the above-described solutions take only geometric attributes, topology or visual appearance into account during the simplification procedure. Thus, the significant structures at higher level would be lost easily in the simplified meshes. As one of the prominent structural information at high level, repetitive structures are ubiquitous in real-world models. But conventional methods have not considered the inherent repetitive structures of the given mesh. Therefore, on lower level of detail representation, the repetitive structures are prone to be decimated as shown in Figure 1. There is a need for a mesh simplification to preserve the repetitive structures on simplified meshes. SUMMARY OF INVENTION
According one aspect of the invention, a method for mesh simplification is provided. In the method, an iterative edge collapse transformation is carried out to simplify an input mesh model, each edge collapse unifying two adjacent vertices of the input mesh model into a single vertex. The method further comprises: carrying out an edge collapse for an edge formed by two adjacent vertices in ascending order of a cost value which is determined as a function of the scales of the two adjacent vertices in the hierarchical repetitive structure of the input mesh model and geometric attributes of the two adjacent vertices.
According one aspect of the invention, an apparatus for mesh simplification is provided. The apparatus comprises: means for detecting repetitive structures of the input mesh model at all scales; means for determining whether each vertex of the input mesh model belongs to the repetitive structure and associating each vertex belonging to a repetitive structure with a scale value which corresponds to the scale of the vertex in the detected hierarchical repetitive structure; means for calculating a visual importance for each vertex as a function of the scale value and its geometric attributes; means for modifying a quadric error metric of each vertex according to the calculated visual importance of each vertex; means for calculating a cost value of each edge formed by two adjacent vertices according to the modified quadric error metrics of the two adjacent vertices; and means for carrying out an edge collapse to an edge in ascending order of the cost value.
It is to be understood that more aspects and advantages of the invention will be found in the following detailed description of the present invention.
BRIEF DESCRIPTION OF THE DRAWINGS
The accompanying drawings are included to provide further understanding of the embodiments of the invention together with the description which serves to explain the principle of the embodiments. The invention is not limited to the embodiments.
In the drawings:
Figure 1 is a diagram showing the principle of a mesh simplification according to prior art;
Figure 2 is a diagram showing the principle of an edge collapse simplification;
Figure 3 is a diagram showing the flowchart of a method for mesh simplification according to an embodiment of the invention;
Figure 4 is a block diagram showing an example of the hierarchical repetitive structure graph organized according to an embodiment of the present invention;
Figure 5 is a diagram showing parameters for calculating a visual importance of a vertex in the input mesh model; and
Figure 6 is a block diagram showing an apparatus for mesh simplification according to an embodiment of the invention. DETAILED DESCRIPTION An embodiment of the present invention will now be described in detail in conjunction with the drawings. In the following description, some detailed descriptions of known functions and configurations may be omitted for conciseness.
According to an embodiment of the invention, a method for mesh simplification is provided, wherein multi-scale repetitive structures detected on an input mesh can be preserved at different levels of detail.
The method of mesh simplification according to an embodiment of the invention can be driven by edge collapses. As described above, a conventional mesh simplification based on edge collapse only considers the attributes of the vertices, by which the cost of each edge collapse transformation can be calculated, which is employed to carefully chose a sequence of these transformations. Each edge collapse unifies two adjacent vertices into a new vertex in the simplifying process. However, the high-level structures cannot be preserved in lower-level simplified representation without consideration of high-level properties of the surface. According to the embodiment of the invention, a new definition of visual importance is provided for each vertex by considering the geometric attributes as well as the multi- scale repetitive structures. The visual importance can be used to enhance the traditional quadric error metric to control the edge collapse, which makes the simplified meshes preserve the geometric features as well as the high-level repetitive structures. After each edge collapse, the visual importance and quadric error metric should be updated.
The simplified meshes at different levels of detail can be generated by iterative edge collapse. The procedure is stopped by an assigned threshold about the geometric error with the original mesh or a fixed number of iterations. The proposed method can construct the multi-resolution representation of the given mesh model efficiently.
Figure 3 is a diagram showing the flowchart of a method for mesh simplification according to an embodiment of the invention.
In the method shown in Figure 3, a triangular mesh model is taken as an example. However, it can be appreciated that the invention is also applicable to other polygonal mesh models, such as a quadrilateral mesh. In addition, for point clouds, the invention can also be applied by constructing the local neighborhoods to find possible point pairs as edges.
As shown in Figure 3, firstly at the step S301 , repetitive structures of the mesh model at all scales are detected. For purpose of the multi-scale repetitive structures detection of the input model mesh model , the method described in the international patent application PCT/CN2010/000984, Kangying Cai et al, "Method and apparatus for detecting repetitive structures in 3D mesh models" can be used.
According to PCT/CN2010/000984, an efficient and multi-scale method has been proposed to detect repetitive structures in 3D models, wherein an iterative uniform sampling method with a decreasing sampling step size is used. A given 3D mesh model is uniformly sampled with an initial sampling step size, which is relatively large. Then, the sampling points are clustered according to their curvature, and then transformations are determined between sampling points that belong to the same cluster. These are so-called candidate transformations. Thus, the candidate transformations need to be determined only for those sampling point pairs where both points have similar curvature. Such clustering step not only improves the algorithm efficiency, but also increases the algorithm accuracy. The transformation space, which is constructed by all the transformations calculated before, contains less noise elements than it would if the sampling step size was smaller. Thus, a subsequent clustering step will be more likely to discover all the repetitive structures. If the model comprises repetitive structures, the usual result of such clustering is that one or more distinct clusters will emerge. In the next step, the (most relevant) clusters are selected, and the corresponding transformations and sampling point pairs are assumed to indicate a repetitive structure. The most relevant clusters are those which are most significant and apparent. Other transformations that don't belong to a cluster are discarded. This procedure is iteratively executed with a decreasing sampling step. Each iteration skips repetitions, and only processes remaining parts of the model and representatives of the representative structures that were detected in the previous iteration. Thus, also multi-scale repetitive structures on the 3D model can be discovered. The iterative process stops when the number of repetitive structures is stable, or when a pre-defined minimum sampling step size is reached. It is also possible to define a time-out, measure the runtime of the process, and terminate the process when the runtime exceeds the time-out. Based on the foregoing, a multi-scale repetitive structures detection of the input model mesh model M can be achieved by PCT/CN2010/000984, the result of which can be used in the embodiment of the present invention.
The detected repetitive structures of the mesh model can be represented by a graph at different scales.
Figure 4 is a block diagram showing an example of the hierarchical repetitive structure graph organized according to an embodiment of the present invention. As shown in Figure 4, there are several levels in the graph. The number of levels is determined once the iterative detecting process stops under a condition that the number of repetitive structures is stable, or a pre-defined minimum sampling step size is reached, or the runtime exceeds the time-out. Suppose the number of the levels in the graph is H+1. The top level (level 0) corresponds to the biggest scale of the repetitive structures that can be discovered, which is the scale of the input model when the whole input model is regarded as the biggest repetitive structure. The bottom level (level H) corresponds to the smallest scale of the repetitive structures that can be discovered from the input model. Each node in the graph represents a repetitive structure, which consists of a representative and several instances, if any. The nodes belonging to the same level correspond to all repetitive structures discovered at the same scale. The only node in level 0 only includes a representative, which is the whole input model, and has no instance. An arrow in the graph means the repetitive structure representative of the starting node includes the repetitive structure representative and/or instances of the end node. The start and end node of an arrow are called the parent and child repetitive structure respectively.
An arrow in Figure 4 records the following information:
Whether or not the parent repetitive structure representative includes the child repetitive structure representative; and
Which child repetitive structure instances are included by the parent node representative, if any. A repetitive structure representative in the hierarchical repetition structure graph is composed of not only its representative geometry but also some instances of its child repetitive structures, if any. A repetitive structure instance is represented by the transformation between the corresponding representative and itself.
Please go back to Figure 3. At the step S302, it is determined for each vertex of the mesh model on whether it belongs to a repetitive structure and associate each vertex belonging to a repetitive structure with a corresponding scale value s(v) which corresponds to the scale of vertex v or the reciprocal of the level I (l≠0) in the hierarchical repetitive structure graph.
And then at the next step S304, the visual importance w(v) of each vertex can be computed using its corresponding scale value s(v) and the areas and normal vectors of its incident triangles, which is employed to prevent the decimation of visually important parts. Considering the geometric attributes on vertex v., one item of visual importance can be defined as:
Figure imgf000010_0001
where .4* is the area of an incident triangle of ? and n,- is the normal vector of the incident triangle, j indicates the index of an incident triangle of a vertex, as shown in Figure 5. It can be seen intuitively that if the vertex is a flat vertex, ¾(ιτ έ) would be zero, which means that the vertex would be decimated.
In addition, the multi-scale repetitive structures detected on the given input mesh are taken into account to enhance the definition of visual importance. Taking the scale value siv ol the detected repetitive structure into account, we define the visual importance as:
Figure imgf000010_0002
where « is a constant.
For the vertices which are not included in the detected repetitive structures, their visual importance values can be expressed as: w{v. = » (:¾'έ). This definition of visual importance can simplify first the non-repetitive components, and then the repetitive components in the order from large scale to small scale while preserving the repetitive structures and geometric features.
As shown in Figure 3, at the step S303 a quadric error metric of each vertex E(v) is computed. It can be appreciated that the geometric error caused by a simplification is characterized heuristically, where a set of planes are associated with each vertex and the error of the vertex with respect to this set is defined as the sum of squared distances to its planes. A quadric error metric can be defined for each vertex to control the edge collapse. Here, the error of a vertex after the edge collapse is computed as the sum of squared distances to its associated planes. The error quadric is denoted by a symmetric matrix Q and the error £(v) at vertex v— |¾^yi s ]' can be expressed as:
At the next step S305, the quadric error metric of each vertex E(v) is modified according to the result of step S304. In this embodiment, the modified quadric error metric involves the basic geometric error as well as a visual importance related to the detected repetitive structures. That is, the modified quadric error metric E*(v) is defined as the quadric error metric E(v) weighted by its visual importance:
E ' iv) = wi )∑(r }. where w(v) is the visual importance defined above for each vertex. Next, at the step S306 the cost of each edge collapse is calculated using the modified quadric error metrics of its end vertices and sorted ascendingly. For each edge, vi and v2 denote the two end vertices while w(vi)Qi and w(v2)Q2 correspond to their modified error quadric respectively. And the optimal contraction target ¾r is computed for each edge (¾¾ .,¾} Thus, the cost of an edge can be expressed by the error of the target vertex At the step 307, all of the edges are stored in a priority queue according to the ascending order of these cost values, which determines the order of edge collapse.
Then at the step S308, the edge with minimum cost is first contracted during the process of edge collapse. Similar to Figure 2, the edge (¾ ,¾) is contracted into a single point y. The vertices ¾ and ?2 are unified into v. All the incident edges are connected to ¾ and the vertex ¾ is deleted. And any degenerate edges or faces are removed in this step.
At the step S309, the position of the new vertex and its adjacency are updated accordingly. Its corresponding scale s(v) is determined as the minimum scale value at the end vertices, that is, min{s{vi), s{v2)).
The simplification process can be controlled by setting the final number of vertices or levels of simplified meshes. At the step S310, if the simplification goal is satisfied, the simplification is stopped. Otherwise, the cost of edge collapse is recomputed at the step S31 1 . According to the updated vertex and its neighborhoods, the cost values of new generated edges are calculated using the above modified quadric error metric. Thus, the priority queue of edges is also updated. And then the edge collapse continued until the simplification goal is satisfied. The iterative procedure can generate a sequence of mesh models, which can be used as the multi-resolution representation of the input mesh. On the final simplified meshes, the repetitive structures will be preserved as well as the geometric features.
An embodiment of the present invention also provides an apparatus for implementation of the method for mesh simplification described above. The apparatus is adapted for carrying out an edge collapse for an edge formed by two adjacent vertices in ascending order of a cost value which is determined as a function of the scales of the two adjacent vertices in the hierarchical repetitive structure of the input mesh model and geometric attributes of the two adjacent vertices.
Figure 6 is a block diagram showing an apparatus for mesh simplification according to an embodiment of the invention.
As shown in Figure 6, the apparatus 600 comprises a detecting means 601 for detecting repetitive structures of the input mesh model at all scales, and a determining means 602 for determining whether each vertex of the input mesh model belongs to the repetitive structure and associating each vertex belonging to a repetitive structure with a scale value which corresponds to the scale of the vertex in the detected hierarchical repetitive structure. The apparatus further comprises a calculating means 603 for calculating a visual importance for each vertex as a function of the scale value and its geometric attributes and a modifying means 604 for modifying a quadric error metric of each vertex according to the calculated visual importance of each vertex from the calculating means 603. The apparatus further comprises a calculating means 605 for calculating a cost value of each edge formed by two adjacent vertices according to the modified quadric error metrics of the two adjacent vertices, and an edge collapse means 606 for carrying out an edge collapse to an edge in ascending order of the cost value.
According to the embodiment of the invention, repetitive structures of an input mesh model is taken into account to generate the multi-resolution representation of the mesh model, which can preserve the high-level structures even at low levels of detail.

Claims

1 . A method for mesh simplification, wherein an iterative edge collapse transformation is carried out to simplify an input mesh model, each edge collapse unifying two adjacent vertices of the input mesh model into a single vertex, characterized in that,
carrying out an edge collapse for an edge formed by two adjacent vertices in ascending order of a cost value which is determined as a function of the scales of the two adjacent vertices in the hierarchical repetitive structure of the input mesh model and geometric attributes of the two adjacent vertices.
2. The method for mesh simplification according to claim 1 , further comprising the steps of:
detecting repetitive structures of the input mesh model at all scales (301 );
determining whether each vertex of the input mesh model belongs to the repetitive structure and associating each vertex belonging to a repetitive structure with a scale value which corresponds to the scale of the vertex in the detected hierarchical repetitive structure (302);
calculating a visual importance for each vertex as a function of the scale value and its geometric attributes (304);
modifying a quadric error metric of each vertex according to the calculated visual importance of each vertex (305);
calculating a cost value of each edge formed by two adjacent vertices according to the modified quadric error metrics of the two adjacent vertices (306); and
carrying out an edge collapse to an edge in ascending order of the cost value(307, 308).
3. The method for mesh simplification according to claim 2, wherein the geometric attributes of the vertex comprises the area of an incident triangle of the vertex and the normal vector of the incident triangle of the vertex.
4. The method for mesh simplification according to claim 3, wherein the visual importance determined by the geometric attributes is defined by
I T « j ;
w ?£) = 1 - j, where Ai is the area of an incident triangle of an vertex i and n is the normal vector of the incident triangle of the vertex.
5. The method for mesh simplification according to claim 4, wherein the visual importance of a vertex belonging to the repetitive structure is defined by
Figure imgf000015_0001
where s(Vj) is the scale value of the vertex and a is a constant.
6. The method for mesh simplification according to claim 4, wherein the visual importance of a vertex not belonging to the repetitive structure is equal to the visual importance determined by the geometric attributes.
7. The method for mesh simplification according to claim 2, wherein the quadric error metric is modified by the original quadric error metric being weighted by the calculated visual importance.
8. Apparatus for mesh simplification, comprising:
means (601 ) for detecting repetitive structures of the input mesh model at all scales;
means (602) for determining whether each vertex of the input mesh model belongs to the repetitive structure and associating each vertex belonging to a repetitive structure with a scale value which corresponds to the scale of the vertex in the detected hierarchical repetitive structure;
means (603) for calculating a visual importance for each vertex as a function of the scale value and its geometric attributes; means (604) for modifying a quadric error metric of each vertex according to the calculated visual importance of each vertex;
means (605) for calculating a cost value of each edge formed by two adjacent vertices according to the modified quadric error metrics of the two adjacent vertices; and
means (606) for carrying out an edge collapse to an edge in ascending order of the cost value.
PCT/CN2012/071349 2012-02-20 2012-02-20 Method and apparatus for mesh simplification WO2013123636A1 (en)

Priority Applications (3)

Application Number Priority Date Filing Date Title
EP12869322.3A EP2817783A4 (en) 2012-02-20 2012-02-20 Method and apparatus for mesh simplification
US14/379,258 US20150379769A1 (en) 2012-02-20 2012-02-20 Method and apparatus for mesh simplification
PCT/CN2012/071349 WO2013123636A1 (en) 2012-02-20 2012-02-20 Method and apparatus for mesh simplification

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
PCT/CN2012/071349 WO2013123636A1 (en) 2012-02-20 2012-02-20 Method and apparatus for mesh simplification

Publications (1)

Publication Number Publication Date
WO2013123636A1 true WO2013123636A1 (en) 2013-08-29

Family

ID=49004913

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2012/071349 WO2013123636A1 (en) 2012-02-20 2012-02-20 Method and apparatus for mesh simplification

Country Status (3)

Country Link
US (1) US20150379769A1 (en)
EP (1) EP2817783A4 (en)
WO (1) WO2013123636A1 (en)

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2521452A (en) * 2013-12-20 2015-06-24 Visual Technology Services Ltd Point Cloud Simplification
US9691006B2 (en) 2013-12-20 2017-06-27 Visual Technology Services Limited Point cloud simplification
US10417821B2 (en) 2015-05-07 2019-09-17 Institut Mines Telecom Method of simplifying a geometry model
EP3846117A4 (en) * 2018-10-16 2021-12-29 Shanghai Lilith Technology Corporation Scaling method and apparatus, device and medium
WO2023063835A1 (en) * 2021-10-12 2023-04-20 Victoria Link Limited Multi resolution subsampled saliency

Families Citing this family (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9911220B2 (en) * 2014-07-28 2018-03-06 Adobe Systes Incorporated Automatically determining correspondences between three-dimensional models
WO2019112546A1 (en) * 2017-12-04 2019-06-13 Hewlett-Packard Development Company, L.P. Inspecting mesh models
CN109345627B (en) * 2018-09-26 2023-11-21 华侨大学 Triangle mesh model feature preserving mixing simplifying method
CN109785443B (en) * 2018-12-21 2023-05-23 博迈科海洋工程股份有限公司 Three-dimensional model simplification method for large ocean engineering equipment
CN109859322B (en) * 2019-01-22 2022-12-06 广西大学 Spectral attitude migration method based on deformation graph
JP6784785B2 (en) * 2019-01-29 2020-11-11 日本ユニシス株式会社 Mesh simplification device and mesh simplification program
CN112258655B (en) * 2020-11-13 2023-08-08 河北地质大学 Three-dimensional grid simplifying method applied to VR virtual bank
CN112465985B (en) * 2020-11-24 2023-09-05 中国银联股份有限公司 Grid model simplification method and device
CN115115801A (en) * 2021-03-22 2022-09-27 广联达科技股份有限公司 Method, device and equipment for simplifying triangular mesh model and readable storage medium
CN113963118B (en) * 2021-11-18 2024-08-06 江苏科技大学 Three-dimensional model identification method based on feature simplification and neural network
CN116342469B (en) * 2022-12-16 2023-10-27 河北环境工程学院 Ricci flow and QEM algorithm-based ring forging laser measurement point cloud data optimization method
EP4428826A1 (en) 2023-03-06 2024-09-11 Carl Zeiss Vision International GmbH Method and device for generating a 3d representation derived from an original 3d representation

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6198486B1 (en) * 1998-09-23 2001-03-06 Intel Corporation Method of using a hybrid error metric for multi-resolution mesh generation
US6587104B1 (en) * 1999-09-30 2003-07-01 Microsoft Corporation Progressive hulls
CN101860979A (en) * 2010-04-23 2010-10-13 浙江工商大学 Three-dimensional model transmitting and interactive drawing method in wireless local area network

Family Cites Families (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6525722B1 (en) * 1995-08-04 2003-02-25 Sun Microsystems, Inc. Geometry compression for regular and irregular mesh structures
DE19637463A1 (en) * 1996-09-13 1998-03-26 Gsf Forschungszentrum Umwelt Process for displaying geometric object surfaces
US6879324B1 (en) * 1998-07-14 2005-04-12 Microsoft Corporation Regional progressive meshes
US6362820B1 (en) * 1999-06-24 2002-03-26 Microsoft Corporation Quadric metric for simplifying meshes with appearance attributes
GB9925947D0 (en) * 1999-11-02 1999-12-29 Elixir Studios Limited Improvements relating to image processing
US6771260B1 (en) * 1999-12-13 2004-08-03 Amada Company, Limited Sketcher
US6982714B2 (en) * 2002-05-01 2006-01-03 Microsoft Corporation Systems and methods for providing a fine to coarse look ahead in connection with parametrization metrics in a graphics system
US8421804B2 (en) * 2005-02-16 2013-04-16 At&T Intellectual Property Ii, L.P. System and method of streaming 3-D wireframe animations
US20040249617A1 (en) * 2003-06-03 2004-12-09 Pccw-Hkt Datacom Services Limited Selective, pregressive transmission of 3D geometry models with the pre-ordered hierarchical meshes
SE0401021D0 (en) * 2004-04-21 2004-04-21 Sectra Imtec Ab Data reduction for the production of computer generated graphics and analysis
US8860723B2 (en) * 2009-03-09 2014-10-14 Donya Labs Ab Bounded simplification of geometrical computer data
EP2446419B1 (en) * 2009-06-23 2021-04-07 InterDigital VC Holdings, Inc. Compression of 3d meshes with repeated patterns
KR101637624B1 (en) * 2009-10-15 2016-07-07 톰슨 라이센싱 Method and apparatus for encoding a mesh model, encoded mesh model, and method and apparatus for decoding a mesh model

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6198486B1 (en) * 1998-09-23 2001-03-06 Intel Corporation Method of using a hybrid error metric for multi-resolution mesh generation
US6587104B1 (en) * 1999-09-30 2003-07-01 Microsoft Corporation Progressive hulls
CN101860979A (en) * 2010-04-23 2010-10-13 浙江工商大学 Three-dimensional model transmitting and interactive drawing method in wireless local area network

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
See also references of EP2817783A4 *
T. BOUBEKEUR; M. ALEXA: "Mesh Simplification by Stochastic Sampling and Topological Clustering, Computer and Graphics", SPECIAL ISSUE ON IEEE SHAPE MODELING INTERNATIONAL 2009, vol. 33, no. 3, 2009, pages 241 - 249

Cited By (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2521452A (en) * 2013-12-20 2015-06-24 Visual Technology Services Ltd Point Cloud Simplification
GB2521452B (en) * 2013-12-20 2015-12-09 Visual Technology Services Ltd Point Cloud Simplification
US9691006B2 (en) 2013-12-20 2017-06-27 Visual Technology Services Limited Point cloud simplification
US10019649B2 (en) 2013-12-20 2018-07-10 Visual Technology Services Limited Point cloud simplification
US10417821B2 (en) 2015-05-07 2019-09-17 Institut Mines Telecom Method of simplifying a geometry model
EP3846117A4 (en) * 2018-10-16 2021-12-29 Shanghai Lilith Technology Corporation Scaling method and apparatus, device and medium
US11636574B2 (en) 2018-10-16 2023-04-25 Shanghai Lilith Technology Corporation Scaling method and apparatus, device and medium
WO2023063835A1 (en) * 2021-10-12 2023-04-20 Victoria Link Limited Multi resolution subsampled saliency

Also Published As

Publication number Publication date
EP2817783A4 (en) 2015-10-14
US20150379769A1 (en) 2015-12-31
EP2817783A1 (en) 2014-12-31

Similar Documents

Publication Publication Date Title
EP2817783A1 (en) Method and apparatus for mesh simplification
JP7491685B2 (en) A set of neural networks
CN109584357B (en) Three-dimensional modeling method, device and system based on multiple contour lines and storage medium
US7443393B2 (en) Method, system, and program product for re-meshing of a three-dimensional input model using progressive implicit approximating levels
CN108230268B (en) Complement an image
US11704802B2 (en) Multi-dimensional model merge for style transfer
Wang Bilateral recovering of sharp edges on feature-insensitive sampled meshes
EP3563353A1 (en) Systems and methods for lightweight precise 3d visual format
CN111028356A (en) Optimization method based on non-convex non-smooth second-order regular term and sparse fidelity term
CN115018992B (en) Method and device for generating hair style model, electronic equipment and storage medium
CN112200733B (en) Grid denoising method based on graph convolution network
US10943037B2 (en) Generating a CAD model from a finite element mesh
CN116977187A (en) Depth point set resampling method based on gradient field
CN114708374A (en) Virtual image generation method and device, electronic equipment and storage medium
Li et al. On surface reconstruction: A priority driven approach
CN115797565A (en) Three-dimensional reconstruction model training method, three-dimensional reconstruction device and electronic equipment
Maruani et al. Voromesh: Learning watertight surface meshes with voronoi diagrams
CN115375847B (en) Material recovery method, three-dimensional model generation method and model training method
CN104036552B (en) Method for generating blue noise meshes on basis of farthest point optimization
WO2023215009A1 (en) Low-poly mesh generation for three-dimensional models
CN113240788A (en) Three-dimensional data transmission and reception method, apparatus, and computer-readable storage medium
CN117934764B (en) Model simplifying method and system based on mesh model
CN116206035B (en) Face reconstruction method, device, electronic equipment and storage medium
CN114373032A (en) Three-dimensional grid deformation method based on contour line skeleton and related device
US20240028784A1 (en) Segmenting a building scene

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 12869322

Country of ref document: EP

Kind code of ref document: A1

WWE Wipo information: entry into national phase

Ref document number: 14379258

Country of ref document: US

NENP Non-entry into the national phase

Ref country code: DE

REEP Request for entry into the european phase

Ref document number: 2012869322

Country of ref document: EP

WWE Wipo information: entry into national phase

Ref document number: 2012869322

Country of ref document: EP