This page is optimized for mobile devices, if you would prefer the desktop version just click here

5.3 Delaunay triangulation for image processing

Triangulation is a tool that divide a surface into regions with certain common characteristics. The type of these characteristics depends on the type of triangulation. Delaunay triangulation can divide a surface into regions that are particularly well-suited for image processing applicaions.

Because of the inherent geometric qualities of image subjects, it is desirable that any algorithm for dividing an image into a set of regions should be able to model a wide variety of geometries. Triangles are the simplest building block for such models. As such, it is appropriate to use a triangulation to break down or build up an image.

Triangulation divides a surface into a set of triangles, with each triangle edge entirely shared by two triangles. Given a set of points P, the Delaunay triangulation of this set ensures that no point is in the circumcircle of any triangle formed.

Circumcircle

The circumcircle of a triangle is the circle that passes through all of the triangle’s vertices (A, B, C).

There are several methods for accomplishing this, such as incremental, divide and conquer, and sweepline. All of these can achieve O(nlogn) run time, where n is the number of points in P. The Delaunay triangulation for a set of points P(X,Y) can easily be accomplished in MATLAB via the command delaunay(X,Y).

The advantage of using Delaunay triangulation over other types is that it maximizes the minimum angles of the triangles. In this way, the triangles tend toward equiangularity, which avoids having triangles that are very long and thin. Therefore, the resulting triangulation looks geometrically balanced. Aside from equiangularity, Delaunay triangulation is particularly non-restrictive. Thus, it is ideal for interpolation algorithms, which attempt to avoid introducing distortions. (Other methods of triangulating might force unusual constraints on the triangle patches, which could result in really weird shapes on the surface. This would distort the pixel values of the final image, since pixel values over a region are directly related to the triangle that covers that region.)

The geometric versatility of triangulation as a tool for breaking down and building up images, combined with the particular geometric advantages of the Delaunay version in the interpolation realm, make Delaunay triangulation an ideal component of pixel interpolation algorithms.

<< Chapter < Page Page > Chapter >>

Read also:

OpenStax, Elec 301 projects fall 2006. OpenStax CNX. Sep 27, 2007 Download for free at http://cnx.org/content/col10462/1.2
Google Play and the Google Play logo are trademarks of Google Inc.
Jobilize.com uses cookies to ensure that you get the best experience. By continuing to use Jobilize.com web-site, you agree to the Terms of Use and Privacy Policy.