Computational geometry
Computational geometry is a branch of computer science devoted to the study of algorithms which can be stated in terms of geometry. Some purely geometrical problems arise out of the study of computational geometric algorithms, and such problems are also considered to be part of computational geometry. While modern computational geometry is a recent development, it is one of the oldest fields of computing with history stretching back to antiquity.
Computational complexity is central to computational geometry, with great practical significance if algorithms are used on very large datasets containing tens or hundreds of millions of points. For such sets, the difference between O and O may be the difference between days and seconds of computation.
The main impetus for the development of computational geometry as a discipline was progress in computer graphics and computer-aided design and manufacturing, but many problems in computational geometry are classical in nature, and may come from mathematical visualization.
Other important applications of computational geometry include robotics, geographic information systems , integrated circuit design, computer-aided engineering , computer vision.
The main branches of computational geometry are:
- Combinatorial computational geometry, also called algorithmic geometry, which deals with geometric objects as discrete entities. A groundlaying book in the subject by Preparata and Shamos dates the first use of the term "computational geometry" in this sense by 1975.
- Numerical computational geometry, also called machine geometry, computer-aided geometric design, or geometric modeling, which deals primarily with representing real-world objects in forms suitable for computer computations in CAD/CAM systems. This branch may be seen as a further development of descriptive geometry and is often considered a branch of computer graphics or CAD. The term "computational geometry" in this meaning has been in use since 1971.
Combinatorial computational geometry
Some of these problems seem so simple that they were not regarded as problems at all until the advent of computers. Consider, for example, the Closest pair problem:
- Given n points in the plane, find the two with the smallest distance from each other.
Problem classes
The core problems in computational geometry may be classified in different ways, according to various criteria. The following general classes may be distinguished.Static problems
In the problems of this category, some input is given and the corresponding output needs to be constructed or found. Some fundamental problems of this type are:- Convex hull: Given a set of points, find the smallest convex polyhedron/polygon containing all the points.
- Line segment intersection: Find the intersections between a given set of line segments.
- Delaunay triangulation
- Voronoi diagram: Given a set of points, partition the space according to which points are closest to the given points.
- Linear programming
- Closest pair of points: Given a set of points, find the two with the smallest distance from each other.
- Largest empty circle: Given a set of points, find a largest circle with its center inside of their convex hull and enclosing none of them.
- Euclidean shortest path: Connect two points in a Euclidean space by a shortest path.
- Polygon triangulation: Given a polygon, partition its interior into triangles
- Mesh generation
- Boolean operations on polygons
Geometric query problems
In geometric query problems, commonly known as geometric search problems, the input consists of two parts: the [|search space] part and the query part, which varies over the problem instances. The search space typically needs to be preprocessed, in a way that multiple queries can be answered efficiently.Some fundamental geometric query problems are:
- Range searching: Preprocess a set of points, in order to efficiently count the number of points inside a query region.
- Point location: Given a partitioning of the space into cells, produce a data structure that efficiently tells in which cell a query point is located.
- Nearest neighbor: Preprocess a set of points, in order to efficiently find which point is closest to a query point.
- Ray tracing: Given a set of objects in space, produce a data structure that efficiently tells which object a query ray intersects first.
- the time and space required to construct the data structure to be searched in
- the time to answer queries.
Dynamic problems
Yet another major class is the dynamic problems, in which the goal is to find an efficient algorithm for finding a solution repeatedly after each incremental modification of the input data. Algorithms for problems of this type typically involve dynamic data structures. Any of the computational geometric problems may be converted into a dynamic one, at the cost of increased processing time. For example, the range searching problem may be converted into the dynamic range searching problem by providing for addition and/or deletion of the points. The dynamic convex hull problem is to keep track of the convex hull, e.g., for the dynamically changing set of points, i.e., while the input points are inserted or deleted.The computational complexity for this class of problems is estimated by:
- the time and space required to construct the data structure to be searched in
- the time and space to modify the searched data structure after an incremental change in the search space
- the time to answer a query.
Variations
- Point in polygon: Decide whether a point is inside or outside a given polygon.
In some contexts of query problems there are reasonable expectations on the sequence of the queries, which may be exploited either for efficient data structures or for tighter computational complexity estimates. For example, in some cases it is important to know the worst case for the total time for the whole sequence of N queries, rather than for a single query. See also "amortized analysis".
Numerical computational geometry
This branch is also known as geometric modelling and computer-aided geometric design.Core problems are curve and surface modelling and representation.
The most important instruments here are parametric curves and parametric surfaces, such as Bézier curves, spline curves and surfaces. An important non-parametric approach is the level-set method.
Application areas of computational geometry include shipbuilding, aircraft, and automotive industries.
Journals
Combinatorial/algorithmic computational geometry
Below is the list of the major journals that have been publishing research in geometric algorithms. Please notice with the appearance of journals specifically dedicated to computational geometry, the share of geometric publications in general-purpose computer science and computer graphics journals decreased.- ACM Computing Surveys
- ACM Transactions on Graphics
- Acta Informatica
- Advances in Geometry
- Algorithmica
- Ars Combinatoria
- '
- Communications of the ACM
- '
- Computer Graphics and Applications
- Computer Graphics World
- Discrete & Computational Geometry
- Geombinatorics
- Geometriae Dedicata
- IEEE Transactions on Graphics
- IEEE Transactions on Computers
- IEEE Transactions on Pattern Analysis and Machine Intelligence
- Information Processing Letters
- International Journal of Computational Geometry and Applications
- Journal of Combinatorial Theory, series B
- Journal of Computational Geometry
- Journal of the ACM
- Journal of Algorithms
- Journal of Computer and System Sciences
- Management Science
- Pattern Recognition
- Pattern Recognition Letters
- SIAM Journal on Computing
- SIGACT News; featured the "Computational Geometry Column" by Joseph O'Rourke
- Theoretical Computer Science
- The Visual Computer