Samiksha Jaiswal (Editor)

Polygon partition

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

A partition of a polygon is a set of primitive units (e.g. squares), which do not overlap and whose union equals the polygon. A polygon partition problem is a problem of finding a partition which is minimal in some sense, for example a partition with a smallest number of units or with units of smallest total side-length.

Contents

Polygon partitioning is an important class of problems in computational geometry. There are many different polygon partition problems, depending on the type of polygon being partitioned and on the types of units allowed in the partition.

The term polygon decomposition is often used as a general term that includes both covering and partitioning.

Applications

Polygon decomposition is applied in several areas:

  • Pattern recognition techniques extract information from an object in order to describe, identify or classify it. An established strategy for recognising a general polygonal object is to decompose it into simpler components, then identify the components and their interrelationships and use this information to determine the shape of the object.
  • In VLSI artwork data processing, layouts are represented as polygons, and one approach to preparation for electron-beam lithography is to decompose these polygon regions into fundamental figures. Polygon decomposition is also used in the process of dividing the routing region into channels.
  • In computational geometry, algorithms for problems on general polygons are often more complex than those for restricted types of polygons such as convex or star-shaped. The point inclusion problem is one example. A strategy for solving some of these types of problems on general polygons is to decompose the polygon into simple component parts, solve the problem on each component using a specialized algorithm, and then combine the partial solutions.
  • Other applications include data compression, database systems, image processing and computer graphics.
  • Partitioning a polygon to triangles

    The most well-studied polygon partition problem is partitioning to a smallest number of triangles, also called triangulation. For a hole-free polygon with n vertices, a triangulation can be calculated in time Θ ( n ) . For a polygon with holes, there is a lower bound of Ω ( n log n ) .

    A related problem is partitioning to triangles with a minimal total edge length, also called Minimum-weight triangulation.

    Partitioning a polygon to pseudo-triangles

    The same two variants of the problem were studied for the case in which the pieces should be pseudotriangles - polygons that like triangles have exactly three convex vertices. The variants are: partitioning to a smallest number of pseodutriangles, and partitioning to pseudotriangles with a minimal total edge length.

    Partitioning a rectilinear polygon to rectangles

    A special sub-family of polygon partition problems arises when the large polygon is a rectilinear polygon (also called: orthogonal polygon). In this case, the most important component shape to consider is the rectangle.

    Rectangular partitions have many applications. In VLSI design, it is necessary to decompose masks into the simpler shapes available in lithographic pattern generators, and similar mask decomposition problems also arise in DNA microarray design. Rectangular partitions can simplify convolution operations in image processing and can be used to compress bitmap images. Closely related matrix decomposition problems have been applied to radiation therapy planning, and rectangular partitions have also been used to design robot self-assembly sequences.

    Several polynomial-time algorithms for this problem are known; see and for a review.

    The problem of partitioning a rectilinear polygon to a smallest number of squares (in contrast to arbitrary rectangles) is NP-hard.

    Partition a polygon to trapezoids

    in VLSI artwork processing systems, it is often required to partition a polygonal region into the minimum number of trapezoids, with two horizontal sides. A triangle with a horizontal side is considered to be a trapezoid with two horizontal sides one of which is degenerate. For a hole-free polygon with n sides, a smallest such partition can be found in time O ( n 3 ) .

    If the number of trapezoids need not be minimal a trapezoidation can be found in time O ( n ) , as a by-product of a polygon triangulation algorithm.

    If the polygon does contain holes, the problem is NP-complete, but a 3-approximation can be found in time O ( n log n ) .

    Partition a polygon to convex quadrilaterals

    A quadrilateralization or a quadrangulation is a partition into quadrilaterals.

    A recurring characteristic of quadrangulation problems is whether they Steiner point are allowed, i.e., whether the algorithm is allowed to add points which are not vertices of the polygon. Allowing Steiner points may enable smaller divisios, but then it is much more difficult to guarantee that the divisions found by an algorithms have minimum size.

    There are linear-time algorithms for quadrangulations of hole-free polygons with Steiner points, but they are not guaranteed to find a smallest partition.

    Partition a polygon to m-gons

    A generalization of previous problems is the problem of partitioning to polygons that have exactly m sides, or at most m sides. Here the goal is to minimize the total edge length. This problem can be solved in time polynomial in n and m.

    More general component shapes

    More general shapes of pieces have been studied, including: arbitrary convex polygons, spiral shapes, star polygons and monotone polygons. See for a survey.

    References

    Polygon partition Wikipedia