You are currently viewing a new version of our website. To view the old version click .
Algorithms
  • Article
  • Open Access

18 February 2019

Computation of Compact Distributions of Discrete Elements

,
and
School of Information Science & Technology, Beijing Forestry University, Beijing 100083, China
*
Author to whom correspondence should be addressed.

Abstract

In our daily lives, many plane patterns can actually be regarded as a compact distribution of a number of elements with certain shapes, like the classic pattern mosaic. In order to synthesize this kind of pattern, the basic problem is, with given graphics elements with certain shapes, to distribute a large number of these elements within a plane region in a possibly random and compact way. It is not easy to achieve this because it not only involves complicated adjacency calculations, but also is closely related to the shape of the elements. This paper attempts to propose an approach that can effectively and quickly synthesize compact distributions of elements of a variety of shapes. The primary idea is that with the seed points and distribution region given as premise, the generation of the Centroidal Voronoi Tesselation (CVT) of this region by iterative relaxation and the CVT will partition the distribution area into small regions of Voronoi, with each region representing the space of an element, to achieve a compact distribution of all the elements. In the generation process of Voronoi diagram, we adopt various distance metrics to control the shape of the generated Voronoi regions, and finally achieve the compact element distributions of different shapes. Additionally, approaches are introduced to control the sizes and directions of the Voronoi regions to generate element distributions with size and direction variations during the Voronoi diagram generation process to enrich the effect of compact element distributions. Moreover, to increase the synthesis efficiency, the time-consuming Voronoi diagram generation process was converted into a graphical rendering process, thus increasing the speed of the synthesis process. This paper is an exploration of elements compact distribution and also carries application value in the fields like mosaic pattern synthesis.

1. Introduction

The synthesis of texture patterns has been an important research subject. Traditional texture synthesis technologies are mainly designed for raster textures, which record texture information only in the form of raster images and have no explicit records or expressions of the geometric content expressed in the textures (such as basic units composing the textures and unit distribution information). Gradually, a number of texture patterns have been found to be distributions of numerous discrete elements. If images are described as geometric distributions of many vector elements, a better effect of pattern synthesis will be achieved from the aspect of element distribution. On this basis, many researchers have begun studying the topics of discrete element distribution [1,2,3,4,5,6,7,8,9], among which the synthesis of compact element distributions is the most challenging. Compact element distributions need to arrange one or several given types of elements in a random and possibly compact way (as show in Figure 1, the compact distribution effects of square and circular elements). This process calls for not only the attention to the element location distributions, but also judgment of the crashing and overlapping relations between elements, which are closely connected with the shapes of the elements. Therefore, it has been a difficult task to synthesize compact element distributions. Currently, the majority of the research is focused on discrete element distributions. Although some researchers, such as Ijiri [10] and Liu [5], have achieved relatively compact element distributions, their methods require both the construction of complicate relations between elements and algorithms with high computational complexity.
Figure 1. Synthesis effect of the work in this paper: (a) square elements; (b) circular elements.
Other researchers have studied compact element distributions from the aspect of space division, among which the Voronoi diagram is the most frequently used. The Voronoi diagram is a plane partitioning method based on distance, which can effectively achieve small-region partitioning. Some researchers utilized the Voronoi diagram to partition the space to achieve the compact distribution of small-region elements [11,12,13]. Other studies [11,12,13] adopted L2-metric as a distance measurement, thus making the shape of the small regions defined as approximately hexagonal. Hausner et al. [14] tried to use the Manhattan distance to measure the distance in the Voronoi diagram, thereby generating a partition of regions similar to square shapes. However, in the practical application, like mosaic pattern synthesis, compact distributions of elements in various shapes will be frequently needed. Drawing from this, we modify the distance metric to affect the shape of the Voronoi region remarkably, thus generating partition of Voronoi region in various shapes. This paper attempts to adopt four distance metrics to realize several types of region partitions, such as those composed of rectangles, circles, ovals, and triangles, and to further achieve compact element distributions of many shapes.
Compared with traditional methods, our method is characterized by the following advantages:
(1) Compact distributions of elements of various shapes were achieved. By adopting different distance metrics of the Voronoi diagram, the shapes of the generated Voronoi regions can be controlled, thus realizing compact distributions of elements of various shapes, such as rectangles, circles, triangles, and ovals.
(2) Our method is highly efficient. By converting the Voronoi generation process into a graphical rendering process, the GPU (Graphics Processing Unit) parallel computing ability can be fully utilized for calculation, and thus the synthesis speed can reach interactive efficiency.
(3) The pattern synthesis can be controlled. By adjusting parameters, users are able to control the size and distribution direction of elements and further control the pattern synthesis to satisfy various synthesis requirements.
This paper not only conducts discussion on geometric topic of compact element distributions, but also achieves the generation of synthesis results with special artistic beauty, which carries practical significance in fields such as pattern design and artistic creation.

3. Methods of This Paper

3.1. Voronoi Diagram Based on Several Distance Metrics

In this paper, the calculation process of the centroidal Voronoi diagram is adopted for the Voronoi diagram generation with the following calculation process. First, generate the Voronoi diagram of N non-overlapping seed points in a plane, which partitions this plane into N regions with all the points in each region closer to the corresponding seed points than to other seed points, as shown in Figure 2a, Then, move the seed point of each region to the centroid of the corresponding region and generate the Voronoi diagram of the seed points again, and repeat the above process. According to the centroidal Voronoi diagram, the distribution of seed points will become increasingly balanced. Normally, the Voronoi region of a set of evenly distributed points will be similar to a relatively regular shape (as shown in Figure 2b).
Figure 2. Voronoi diagrams: (a) Voronoi diagram of original seed points; (b) centroidal Voronoi diagram.
In the most classical Voronoi diagram, Lp-metric is used to measure the distance between the p0 ( x 0 , y 0 ) and p1 ( x 1 , y 1 ) and among all the Lp-metrics, L2-metric is the most commonly used.
d ( p 0 ,   p 1 )   =   ( x 1 x 0 ) 2 + ( y 1 y 0 ) 2
With this metric, the generated Voronoi region is close to a regular hexagon (as shown in Figure 3a). Hausner et al. [8] used the L1-metric (Manhattan distance).
d ( p 0 ,   p 1 )   =   | x 1 x 0 | + | y 1 y 0 |
Figure 3. Voronoi diagrams generated with different distance function: (a) L2-metric distance; (b) Manhattan distance; (c) Chebyshev distance; (d) Chebyshev distance with axial scale; (e) L2-metric with axial scale; and (f) equidistant line distance. The partitioned regions are presented in different colors.
The polygons of the generated Voronoi diagram were close to square. To obtain Voronoi regions with more shapes, we attempt to adopt more metrics. Four additional distance metrics are introduced, which are Chebyshev distance, Chebyshev distance with axial scale, L2-metric distance with axial scale, and equidistant line distance, and finally, distributions of squares, rectangles, ovals, and triangles are achieved, respectively. In the following part of this paper, the different metrics will be discussed in detail.

3.1.1. Chebyshev Distance

The Chebyshev distance defines the distance between two points ( x 1 , y 1 ) and ( x 0 , y 0 ) as max ( | x 1 x 0 | , | y 1 y 0 | ) . It is not difficult to prove that it is equivalent to the Lp-metric with p→∞. The Voronoi region generated with this distance is the same shape, namely square, as the one generated with Manhattan metrics (as shown in Figure 3c). However, the differences between these two metrics are the directions of the coordinate axes. The axes of the Manhattan distance are inclined 45 degrees, while the axes of the Chebyshev distance are horizontal and vertical (as shown in Figure 4). In this paper, we use the Chebyshev distance because its axial directions conform with normal image space, which is easier to scale and control.
Figure 4. The axial directions of the Manhattan distance and Chebyshev distance: (a) Manhattan distance; (b) Chebyshev distance.
As shown in Figure 4, the side of the square is defined as La, while the diagonal line is defined as Lb; the axis xy corresponding to the Manhattan distance is shown in Figure 4a. The distance between any point A ( x 1 , y 1 ) on the square side and the origin O ( x 0 , y 0 ) is | x 1 x 0 | + | y 1 y 0 | , which is the sum of the red segment and blue segment in Figure 4a, that is, Lb /2. The axis xy corresponding to the Chebyshev distance is shown in Figure 4b. The distance between any point A ( x 1 , y 1 ) on the square side and the origin O ( x 0 , y 0 ) is m a x ( | x 1 x 0 | , | y 1 y 0 | ) , which is the length of the longer segment among the red and blue segments in the picture, La /2.

3.1.2. Chebyshev Distance with Axial Scale

The Chebyshev distance between p0 ( x 0 , y 0 ) and p1 ( x 1 , y 1 ) with axial scale is as follows:
d   ( p 0 ,   p 1 )   = m a x ( β | x 1 x 0 | ,   ( 1 / β ) | y 1 y 0 | ) .
With this metric, a rectangle-shaped Voronoi diagram is generated (as shown in Figure 3d). To obtain the Chebyshev distance with axial scale, the original Chebyshev space is scaled along two axial directions; as a result, the unit distance has been changed and the original square-shaped Voronoi diagram becomes a rectangle-shaped one.
As shown in Figure 5, let β be 1/2 and the length of each square side be La before the axial scaling. For the rectangle after the scaling, the length is 2 × La, while the width is 1/2La. The distance from any point A ( x 1 , y 1 ) on the rectangle to the origin point O ( x 0 , y 0 ) is m a x ( β | x 1 x 0 | , ( 1 / β ) | y 1 y 0 | ) . To measure this distance, a correspondence between points A and point A 1 ( β x 1 , ( 1 / β ) y 1 ) on the square is defined, and the distance between point A 1 and the origin point is calculated based on the original Chebyshev space. Hence, the distance from any point A ( x 1 , y 1 ) on the rectangle to the origin point O ( x 0 , y 0 ) is La/2.
Figure 5. Different appearances of the square in Chebyshev space and Chebyshev space with axial scale.

3.1.3. L2-Metric Distance with Axial Scale

L2-metric with axial scale can be expressed as follows:
d   ( p 0 ,   p 1 )   =   β 2 ( x 1 x 0 ) 2 + ( 1 / β ) 2 ( y 1 y 0 ) 2 .
With this metric, the generated Voronoi region is close to an oval shape (as shown in Figure 6). In the same manner as the Chebyshev distance with axial scale mentioned above, for the L2-metric distance with axial scale, the original Euclidean space is scaled along two axial directions; as a result, the unit distance is changed and the original circle-shaped Voronoi diagram becomes an oval-shaped one.
Figure 6. Different appearances of the circle in L2-metric distance and L2-metric distance with axial scale.
As shown in Figure 6, let β be 1 / 2 and the radius of the circle be r . With the transverse length of the oval defined as 4 × r after the axial scaling and the minor-axis length of the oval as r, the distance between any point A ( x 1 , y 1 ) on the oval and the origin point O ( x 0 , y 0 ) equals that between the point A 1 and origin point O ( x 0 , y 0 ) . A 1 is the corresponding point of A on the circle, whose coordinates are x 1 and y 1 multiplied by the factors β and ( 1 β ) respectively. This means that the distance between any point on the oval and the origin point O ( x 0 , y 0 ) is r.

3.1.4. Equidistant Line Distance

The equidistant line distance is a kind of metric adopted in the paper to generate regular triangular regions. On the basis of this metric, the distance between two points is measured by the equidistant line of a regular triangle. The direction of the regular triangle in the space is defined as shown in Figure 7. Given a regular triangle with a side length of La, with the origin position defined as the center of gravity, draw a similar regular triangle within the original regular triangle with the centers of gravity of all the triangles at the origin point, and then the distance between any point on the triangle side and the origin point is defined as the distance between the center of gravity and the triangle vertex. When measuring the distance between P ( x 1 , y 1 ) and Q ( x 0 , y 0 ) with this metric, we need to define the origin point as P, construct regular triangles with P as the gravity center, and let the point Q be located on the side of the regular triangle. Hence, the distance between P and the vertex of the triangle is the same as that between P and Q.
Figure 7. Left: equidistant line distance. Right: the Voronoi diagram and the Voronoi region shape (lower right corner) by the equidistant line distance.
The distance between any point A ( x 1 , y 1 ) on the triangle and the origin point O ( x 0 , y 0 ) is 3 / 3 L a . However, instead of being a strict triangle, the final Voronoi region obtained with this metric is a dodecagon that is close to a triangle (as shown in Figure 7, right). The reason is that triangles with consistent directions cannot fill the entire plane with no gaps or overlaps. Therefore, during the repeating iteration process, the triangle is turned into the shape shown in Figure 7, left. Finding an approach to obtain a more accurate triangular region partition will be our future research direction.

3.2. Voronoi Diagram Generation Based on GPU Acceleration

To generate a Voronoi diagram, the iteration process must be repeated and every iteration process needs to loop through all the distribution points, which is quite time-consuming. Hoff et al. [30] proposed a method of converting the Voronoi generation process into a graphical rendering process. First, the distribution of the initial points is determined, and then a circular cone with height equal to the radius is constructed at each initial point location. The vertices of the cones are used as the initial seed points. The cones are the same in terms of all parameters except color. In this way, the height of the side part of the cone can be adopted to measure the distance from the corresponding points on the bottom surface to the center; thus, the correct Voronoi diagram can be obtained by rendering all the cones with visibility detection via the z-buffer algorithm. The Voronoi generation process is successfully transformed into a graphical rendering process, and the GPU parallel computing ability can be fully utilized to increase the speed. This paper, taking this as a reference, implemented a GPU rendering process to achieve quick generation of Voronoi regions with many shapes. In the following part of this paper, the Voronoi regions generated by GPU rendering are described—they are of five shapes; namely, circle, square, rectangle, oval, and triangle.
The key to accomplishing the Voronoi generation via geometric rendering and visibility detection with the z-buffer algorithm is to ensure that the height of any point on the side of the geometric shape is equal to the distance between the corresponding points of the random point on the bottom surface and the center. Taking the cone shown in Figure 8 as an example, the height of the cone and the radius of the bottom surface are both La, and the corresponding point of any random point A on the side is A 0 . Given that the distance between A 0 and center is the yellow segment | O A 0 | and the height of A is the blue segment | A B | , based on | T B | = | A B | and | T B | = | O A 0 | , we conclude that | A B | = | O A 0 | . As shown in Figure 9, by rendering a mass of three-dimensional cones, we can obtain the Voronoi diagram. In the rendering, the orthographic projection is adopted, and the z-buffer method is used for visibility detection.
Figure 8. The size of the cones.
Figure 9. (a) Circular cone in 3D space; (b) results after rendering.
To generate Voronoi diagrams in many shapes, we adopt many kinds of geometries that conform to the above distance conditions; the detailed information is shown in Table 1.
Table 1. Shapes and sizes of geometries corresponding to different distance metrics.
Calculation process:
Step 1. Randomly generate initial distribution point set p.
Step 2. Show geometries (circular cone, square pyramid, pyramid, elliptic cone, and triangular pyramid) in different colors at every p(x, y) location; different colors can make it easier to distinguish different Voronoi regions.
Step 3. Rotate the geometry ψ(x, y) according to the direction field of p(x, y).
Step 4. Perform the depth measurement, and read the current drawing results; calculate the center of gravity of each Voronoi region; the results are the new distribution point set p.
Step 5. Repeat steps 2 to 4 for the new point set p until the specified number of iterations is reached.
Step 6. Place the elements at the locations of the final centers of gravity.

3.3. Parametric Control of Element Distribution

To make the synthesis output more variable and controllable, this paper introduces several approaches to control the size and direction of the generated Voronoi regions, thus achieving compact element distributions of changeable size and direction.

3.3.1. Changing of Element Sizes

Our research results indicate that the distribution of the initial point set has a significant effect on the synthesis results. A region with a more compact distribution of initial points usually eventually results in a smaller Voronoi region. Therefore, we propose to control the sizes of the Voronoi polygons by adjusting the parameters while generating the initial points to control the density. However, the experimental results show that if we only use the method described above to control the size, there will be situations in which the size gradually varies in the junctions of large and small polygons. This will create irregular polygons at the boundary (as shown in Figure 11a), which is not desirable. For this reason, in addition to controlling the density of the initial points, we utilize the method of changing the size of the geometry that was adopted during the synthesis process for better results.
Let α be the slope of the geometry used during the synthesis process, and take the circular cone in Figure 10 as an example. While generating the Voronoi region, use geometry with a smaller size (geometry with a larger α ) when a smaller region needs to be obtained and geometry with a larger size (geometry with a smaller α ) in other regions. Together with the initial point distribution in this region, better results can be achieved by changing the sizes of the elements (as shown in Figure 11b).
Figure 10. Circular cones with different slopes.
Figure 11. Results of controlling the sizes of the Voronoi regions (a) by simply controlling the initial point density and (b) by controlling the initial point density and geometric slopes.

3.3.2. Changing of the Vector Field

During the iterative optimization process of generating the centroidal Voronoi diagram, the method in this paper can adjust the direction of the generated Voronoi region, which is shown in Step 3 of the calculation process in Chapter 3.2. Users can define a vector field ψ for the distribution region. Let the direction of the vector field of seed point p(x,y) be ψ(x,y). By rotating the geometry at p(x,y) to the direction ψ(x,y), we can obtain element distribution results by conforming to the vector field. Figure 12a is the vector field and Figure 12b is the generated Voronoi diagram based on the Chebyshev distance metric.
Figure 12. Centroidal Voronoi diagram with vector field: (a) vector field; (b) centroidal Voronoi diagram with the vector field shown in (a) based on the Chebyshev distance metric.

3.4. Placement of the Elements

Through the above methods, compact distributions of Voronoi regions with different shapes can be obtained. In order to realize the compact distributions of the discrete elements, we need to place the elements into every Voronoi region. However, because the Voronoi regions have different sizes and directions, the sizes and directions of the elements need to be adjusted while putting them into the regions to obtain the distribution results. Taking the size adjustment as an example, as shown in Figure 13, we need to extract the contour of every Voronoi region and adjust the size and direction based on the contour information.
Figure 13. Putting the elements into Voronoi regions after adjusting the sizes.

4. Results

We use C++ programming to realize the algorithm and, based on OpenGL, the Voronoi diagram is successfully generated through three-dimensional graphical rendering.

4.1. Experimental Results

The pictures shown in Figure 14 are synthesis results that were obtained using the methods proposed in this paper. Figure 14a–d show distribution effects of squares, rectangles, ellipses, and triangles, respectively. Figure 14e,f show the compact distribution effects with elements varying from sizes and directions.
Figure 14. Demonstration of synthesis results: (a) distribution effects of squares; (b) rectangles; (c) ellipses; (d) triangles; (e) the distribution effects of elements with varying sizes; (f) the distribution effects of elements with varying directions. Furthermore, the methods introduced in this paper can simulate the artistic effects of mosaic works, as shown in Figure 15.
In particular, if random points are distributed throughout an image and the image information is used as a constraint, our algorithm can simulate the mosaic effect based on the image features, which means for any picture specified by the user, our algorithm can automatically convert the image into a mosaic-style image and obtain more artistic mosaic effects. As shown in Figure 16, Figure 17, Figure 18 and Figure 19 below, the mosaic effects are synthesized based on the image features.
Figure 16. Converting the image into mosaic effects. The vector field controls the directions of the elements; the density graph controls the sizes of the elements.
Figure 17. Synthesis results based on image feature analysis.
Figure 18. Synthesis results without (middle) and with (right) the vector field. (The element’s directions in the right image are controlled by the vector field extracted from the left image.).
Figure 19. Synthesis results without (middle) and with (right) size variation of the elements (the size variation of the right image is controlled by the density graph extracted from the left image).

4.2. Synthesis Effect Comparison

This paper conducts research on the compact distributions of discrete elements. The more compact the distribution is in a certain region, the higher the regional coverage scale. Therefore, the synthesis effect could be evaluated by the regional coverage scale. Methods of FritzscheL, P. [12], Smith, K. [26] and Hu, W. [13] are adopted to compare the synthesis effects from the following three aspects: synthesis result, coverage scale, and time consumption. The synthesis results of the method introduced in this paper are closely related to the number of iterations used to generate the centroidal Voronoi diagram. Table 2 shows the results after 20 iterations. On the basis of the data in Table 2, the method of this paper is characterized by a larger coverage scale, lower time consumption, and a better synthesis result.
Table 2. Comparison among different methods.

5. Discussion

This paper, by adopting a variety of distance metrics to generate Voronoi diagrams for compact distributions of Voronoi regions of many shapes, has finally achieved the compact distributions of elements of various shapes. During the synthesis process, by converting the time-consuming Voronoi diagram generation process into a graphical rendering process, the computational speed of the algorithm has been increased with the parallel computing ability of the GPU, thereby satisfying the interactive synthesis efficiency. Meanwhile, the methods in this paper can control the sizes and directions of the distribution elements to achieve synthesis results with a variation effect, thus enhancing the expressive effect of the synthesis results.
The methods proposed in this paper also have some limitations: (1) the generated Voronoi regions cannot exactly match the element’s shape, causing some gaps between elements or overlapping, which affects the synthesis results; (2) the distributions of elements of triangle shape are not perfect, because every triangle has three gaps on each side; (3) apart from the existing shapes, the possibility of obtaining Voronoi diagrams with other shapes, even general shapes, is a topic that is worthy of further research and discussion.

Author Contributions

Software, J.C.; investigation, J.C., G.Y., and M.Y.; writing—original draft preparation, J.C. and G.Y.; writing—review and editing, G.Y.

Funding

This research was funded by the National Key R&D Program of China (grant number 2017YFC0504404), the Fundamental Research Funds for the Central Universities (grant number 2015ZCQ-XX), and the Chinese National Natural Science Foundation (grant number 61402038).

Conflicts of Interest

The authors declare no conflict of interest. The funders had no role in the design of the study; in the collection, analyses, or interpretation of data; in the writing of the manuscript; or in the decision to publish the results.

References

  1. Cho, J.H.; Xenakis, A.; Gronsky, S. Course 6: Anyone can cook: inside Ratatouille’s kitchen. In Proceedings of the SIGGRAPH ‘07 ACM SIGGRAPH 2007 courses, San Diego, CA, USA, 5–9 August 2007; Available online: https://www.xuebuyuan.com/zh-hant/121918.html (accessed on 16 February 2019).
  2. Guendelman, E.; Bridson, R.; Fedkiw, R. Nonconvex rigid bodies with stacking. ACM Trans. Graphics 2003, 22, 871–878. [Google Scholar] [CrossRef]
  3. Barla, P.; Breslav, S.; Markosian, L.; Thollot, J. Interactive Hatching and Stippling by Example. Available online: https://arxiv.org/abs/cs/0607050 (accessed on 14 February 2019).
  4. Lloyd, S. Least squares quantization in PCM. IEEE Trans. Inf. Theory 1982, 28, 129–137. [Google Scholar] [CrossRef]
  5. Cook, R.L. Stochastic sampling in computer graphics. ACM Trans. Graphics 1986, 5, 51–72. [Google Scholar] [CrossRef]
  6. Hoff, K.; Keyser, J.; Lin, M.; Manocha, D.; Culver, T. Fast Computation of Generalized Voronoi Diagrams Using Graphics Hardware. In Proceedings of the 26th annual conference on Computer graphics and interactive techniques, Los Angeles, CA, USA, 8–13 August 1999; pp. 277–286. [Google Scholar]
  7. Smith, K.; Liu, Y.; Klein, A.W. Animosaics. In Proceedings of the 2005 ACM SIGGRAPH/Eurographics Symposium on Computer Animation, Los Angeles, CA, USA, 29–31 July 2005; pp. 201–208. [Google Scholar]
  8. Efros, A.A.; Leung, T.K. Texture synthesis by non-parametric sampling. In Proceedings of the International Conference on Computer Vision 1999, Kerkyra, Corfu, Greece, 20–25 September 1999; pp. 1033–1038. [Google Scholar]
  9. Wei, L.; Levoy, M. Fast texture synthesis using tree-structured vector quantization. In Proceedings of the 27th annual conference on Computer graphics and interactive techniques, New Orleans, LA, USA, 23–28 July 2000; pp. 479–488. [Google Scholar]
  10. Fritzsche, L.P.; Hellwig, H.; Hiller, S.; Deussen, O. Interactive design of authentic looking mosaics using Voronoi structures. In Proceedings of the 2nd international symposium on Voronoi diagrams in science and engineering VD 2005 conference, Seoul, Korea, 10–13 October 2005; pp. 1–11. [Google Scholar]
  11. Ijiri, T.; Mech, R.; Igarashi, T.; Miller, G. An example-based procedural system for element arrangement. Comput. Graphics Forum 2008, 27, 429–436. [Google Scholar] [CrossRef]
  12. Passos, V.A.; Waltery, M.; Sousa, M.C. Sample-Based Synthesis of Illustrative Patterns. In Proceedings of the Pacific Conference on Computer Graphics and Applications, Hangzhou, China, 25–27 September 2010; pp. 109–116. [Google Scholar]
  13. Xu, C.; Yang, G. Vector texture pattern synthesis based on neighborhood histogram matching. J. Image Graphics 2013, 18, 1703–1713. [Google Scholar]
  14. Hausner, A. Simulating decorative mosaics. In Proceedings of the 28th annual conference on Computer graphics and interactive techniques, Los Angeles, CA, USA, 12–17 August 2001; pp. 573–580. [Google Scholar]
  15. Barla, P.; Breslav, S.; Thollot, J.; Sillion, F.; Markosian, L. Stroke pattern analysis and synthesis. Comput. Graphics 2006, 25, 663–671. [Google Scholar]
  16. Hurtut, T.; Landes, P.E.; Thollot, J.; Gousseau, Y.; Drouillhet, R.; Coeurjolly, J.F. Appearance-guided synthesis of element arrangements by example. In Proceedings of the 7th International Symposium on Non-Photorealistic Animation and Rendering, New Orleans, LA, USA, 1–2 August 2009; pp. 51–60. [Google Scholar]
  17. Efros, A.A.; Freeman, W.T. Image quilting for texture synthesis and transfer. In Proceedings of the 28th annual conference on Computer graphics and interactive techniques, Los Angeles, CA, USA, 12–17 August 2001; pp. 341–346. [Google Scholar]
  18. Liang, L.; Liu, C.; Xu, Y.; Guo, B.; Shum, H.Y. Real-time texture synthesis by patch-based sampling. ACM Trans. Graphics 2001, 20, 127–150. [Google Scholar] [CrossRef]
  19. Hertzmann, A.; Jacobs, C.E.; Oliver, N.; Curless, B.; Salesin, D.H. Image Analogies. In Proceedings of the 28th annual conference on Computer graphics and interactive techniques, Los Angeles, CA, USA, 12–17 August 2001; pp. 327–340. [Google Scholar]
  20. Liu, Y.; Lin, W.C.; Hays, J. Near-regular texture analysis and manipulation. ACM Trans. Graphics 2004, 23, 368–376. [Google Scholar] [CrossRef]
  21. Hu, W.; Chen, Z.; Pan, H.; Yu, Y.; Grinspun, E.; Wang, W. Surface Mosaic Synthesis with Irregular Tiles. IEEE Trans. Visual. Comput. Graphics 2016, 22, 1302–1313. [Google Scholar] [CrossRef] [PubMed]
  22. Aurenhammer, F. Voronoi diagrams—A survey of a fundamental data structure. ACM Comput. Surv. 1991, 23, 345–405. [Google Scholar] [CrossRef]
  23. Lee, D.T. Two-dimensional Voronoi diagrams in the L_p-metric. J. ACM 1980, 27, 604–618. [Google Scholar] [CrossRef]
  24. Barequet, G.; Dickerson, M.T.; Goodrich, M.T. Voronoi diagrams for convex polygon-offset distance functions. Discrete Comput. Geom. 2001, 25, 271–291. [Google Scholar] [CrossRef]
  25. Klein, R. Voronoi Diagrams in the Moscow Metric; Springer: Heidelberg/Berlin, Germany, 2005. [Google Scholar]
  26. Labelle, F.; Shewchuk, J.R. Anisotropic voronoi diagrams and guaranteed-quality anisotropic mesh generation. In Proceedings of the nineteenth annual symposium on Computational geometry, San Diego, CA, USA, 8–10 June 2003; pp. 191–200. [Google Scholar]
  27. Augenbaum, J.M.; Peskin, C.S. On the construction of the Voronoi mesh on a sphere. J. Comput. Phys. 1985, 59, 177–192. [Google Scholar] [CrossRef]
  28. Aichholzer, O.; Aurenhammer, F.; Chen, D.Z.; Lee, D.T.; Papadopoulou, E. Skew Voronoi diagrams. Int. J. Comput. Geom. Appl. 1999, 9, 235–246. [Google Scholar] [CrossRef]
  29. Leibon, G.; Letscher, D. Delaunay triangulations and Voronoi diagrams for Riemannian manifolds. In Proceedings of the Sixteenth Annual Symposium on Computational Geometry, Kowloon, Hong Kong, China, 12–14 June 2000; pp. 341–349. [Google Scholar]
  30. Boissonnat, J.D.; Rouxel-Labbé, M.; Wintraecken, M. Anisotropic Triangulations Via Discrete Riemannian Voronoi Diagrams. Available online: https://arxiv.org/abs/1703.06487 (accessed on 14 February 2019).

Article Metrics

Citations

Article Access Statistics

Multiple requests from the same IP address are counted as one view.