1 Introduction

A subset S⊆R2 is convex if for any two points p and q in the set the line segment with endpoints p and q is contained in S. The convex hull of a set S is the smallest convex set containing S. The convex hull of a set of points P is a convex polygon with vertices in P. A point in P is an extreme point (with respect to P) if it is a vertex of the convex hull of P. A set of points is said to be strongly convex if it consists of only extreme points.

This chapter describes the functions provided in CGAL for producing convex hulls in two dimensions as well as functions for checking if sets of points are strongly convex are not. There are also a number of functions described for computing particular extreme points and subsequences of hull points, such as the lower and upper hull of a set of points.

一个点集S⊆R2,如果对于点集中任意两个点 p 和 q ,以p 和q 为端点的线段被包在这个子集(构成的多边形)中,我们称S是凸的(convex )。一个点集S的凸包(convex hull )是包含S的最小凸集。一个点集P的凸包(convex hull )是一个以P中的点为顶点的多项式。如果P中一个点是其凸包(convex hull )中的一个顶点,则该点是一个P的极点(extreme point )。一个点集被称为强凸的(strongly convex )如果它只包含极点。

本章描述CGAL提供的在2维中生成凸包(convex hulls)的函数和用于检查点集是否强凸的(strongly convex )的函数。还有一些函数用于计算特定极点以及包(hull)生成之后的其他函数,如点集的下半包和上半包。

2 Convex Hull

CGAL provides implementations of several classical algorithms for computing the counterclockwise sequence of extreme points for a set of points in two dimensions (i.e., the counterclockwise sequence of points on the convex hull). The algorithms have different asymptotic running times and require slightly different sets of geometric primitives. Thus you may choose the algorithm that best fits your setting.

Each of the convex hull functions presents the same interface to the user. That is, the user provides a pair of iterators, first and beyond, an output iterator result, and a traits class traits. The points in the range [firstbeyond) define the input points whose convex hull is to be computed. The counterclockwise sequence of extreme points is written to the sequence starting at position result, and the past-the-end iterator for the resulting set of points is returned. The traits classes for the functions specify the types of the input points and the geometric primitives that are required by the algorithms. All functions provide an interface in which this class need not be specified and defaults to types and operations defined in the kernel in which the input point type is defined.

Given a sequence of n input points with h extreme points, the function convex_hull_2() uses either the output-sensitive O(nh) algorithm of Bykat [5] (a non-recursive version of the quickhull [4] algorithm) or the algorithm of Akl and Toussaint, which requires O(nlogn) time in the worst case. The algorithm chosen depends on the kind of iterator used to specify the input points. These two algorithms are also available via the functions ch_bykat() and ch_akl_toussaint(), respectively. Also available are the O(nlogn) Graham-Andrew scan algorithm [3][9] (ch_graham_andrew()), the O(nh) Jarvis march algorithm [8] (ch_jarvis()), and Eddy's O(nh)algorithm [6] (ch_eddy()), which corresponds to the two-dimensional version of the quickhull algorithm. The linear-time algorithm of Melkman for producing the convex hull of simple polygonal chains (or polygons) is available through the function ch_melkman().

CGAL提供了2d空间中的几种典型的算法来计算逆时针序的极点集(即凸包的逆时针序的点集)。各个算法有着不同的渐近线时间效率,需要稍有不同的几何元语集合。这样你可以选择最适合你的算法。

每个计算凸包的函数提供了相同的接口。用户提供一对 iterator , first和beyond,一个输出iterator result, 和一个traits类 traits。在范围[firstbeyond)的点用于定义输入的需要计算其凸饭点集。逆时针序的极点集被写入了始于result的序列中,且最后一个点的(past-the-end)iterator被 返回。traits 类用于确定输入点的数的类型和算法所要求的几何元语集合。所有的函数提供了一个接口,使用这个接口时这个类不需要指定,输入点的缺省类型(All functions provide an interface in which this class need not be specified and defaults to types and operations defined in the kernel in which the input point type is defined)。

给定n个输入点的序列,其中有h个极点,

(1)Bykat 算法(output-sensitive O(nh) algorithm of Bykat, 一种quickhull算法的非回归版本),

(2)Akl 和 Toussaint算法,它们最差的情况下需要O(nlogn)时间。算法的选择依赖于指定的输入点集。这两个算法也可以通过ch_bykat() 和 ch_akl_toussaint()函数分别得到。

(3)Graham-Andrew 扫描算法(Graham-Andrew scan algorithm , (ch_graham_andrew()),)其算法时间为O(nlogn) 。

(4)Jarvis march算法(Jarvis march algorithm,  (ch_jarvis()), O(nh))

(5)Eddy'算法(Eddy's O(nh)algorithm,ch_eddy()),它对应于quickhull算法的2维版本。

(6)Melkman 算法提供线性时间,为简单多边形链计算凸包(函数ch_melkman()

3 Example using Graham-Andrew's Algorithm

In the following example a convex hull is constructed from point data read from standard input using Graham_Andrew algorithm. The resulting convex polygon is shown at the standard output console. The same results could be achieved by substituting the function ch_graham_andrew() by other functions such as ch_bykat().

下面的例子使用标准输入点数据生成凸包,使用ch_graham_andrew()算法。其结果凸多边形输出到标准输出窗口。换函数ch_bykat()可得到相同结果。
File Convex_hull_2/ch_from_cin_to_cout.cpp

#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/ch_graham_andrew.h>
 
typedef K::Point_2 Point_2;
 
int main()
{
std::istream_iterator< Point_2 > in_start( std::cin );
std::istream_iterator< Point_2 > in_end;
std::ostream_iterator< Point_2 > out( std::cout, "\n" );
CGAL::ch_graham_andrew( in_start, in_end, out );
return 0;
}

4 Extreme Points and Hull Subsequences

In addition to the functions for producing convex hulls, there are a number of functions for computing sets and sequences of points related to the convex hull.

The functions lower_hull_points_2() and upper_hull_points_2() provide the computation of the counterclockwise sequence of extreme points on the lower hull and upper hull, respectively. The algorithm used in these functions is Andrew's variant of Graham's scan algorithm [3][9], which has worst-case running time of O(nlogn).

There are also functions available for computing certain subsequences of the sequence of extreme points on the convex hull. The function ch_jarvis_march() generates the counterclockwise ordered subsequence of extreme points between a given pair of points and ch_graham_andrew_scan() computes the sorted sequence of extreme points that are not left of the line defined by the first and last input points.

Finally, a set of functions (ch_nswe_point()ch_ns_point()ch_we_point()ch_n_point()ch_s_point()ch_w_point()ch_e_point()) is provided for computing extreme points of a 2D point set in the coordinate directions.

另外,还有一些函数用于与凸包相关的点集计算。

(1)lower_hull_points_2() 和 upper_hull_points_2()用于计算逆时针序的下半包和上半包。这个算法是Graham's scan algorithm的Andrew'变种,最差为O(nlogn);

(2)还有一些函数用于计算已经生成的凸包中的极点的子序列(subsequence )的函数。ch_jarvis_march()用于计算给定两点之间的逆时针序的极点的子序列,ch_graham_andrew_scan()用于生成一个逆时针排列的极点的子序列,这个子序列的所有极点均不在给定输入点的左侧。(computes the sorted sequence of extreme points that are not left of the line defined by the first and last input points.)

(3)最后,一个函数集用于计算给定坐标方向( coordinate directions)的极点集(ch_nswe_point()ch_ns_point()ch_we_point()ch_n_point()ch_s_point()ch_w_point()ch_e_point()).

5 Traits Classes

Each of the functions used to compute convex hulls or extreme points is parameterized by a traits class, which specifies the types and geometric primitives to be used in the computation. There are several implementations of 2D traits classes provided in the library. The class Convex_hull_traits_2 corresponds to the default traits class that provides the types and predicates presented in the 2-dimensional CGAL kernel in which the input points lie. The class Convex_hull_constructive_traits_2 is a second traits class based on CGAL primitives but differs from Convex_hull_traits_2 in that some of its primitives reuse intermediate results to speed up computation.

In addition, the 2D and 3D Linear Geometric Kernel provides three projective traits classes (Projection_traits_xy_3Projection_traits_xz_3, and Projection_traits_yz_3), which may be used to compute the convex hull of a set of three-dimensional points projected into each of the three coordinate planes.

每个计算凸包或极点的函数都被一个traits类参数化,这个traits指定了计算中使用的类型和几何元语。库中有几个2D traits类。

(1)Convex_hull_traits_2 类对应于2D CGAL内核中缺省的traits 类,提供了类型和判定(The class Convex_hull_traits_2 corresponds to the default traits class that provides the types and predicates presented in the 2-dimensional CGAL kernel in which the input points lie. )。

(2)Convex_hull_constructive_traits_2类是第二个基于CGAL元语的traits类,与 Convex_hull_traits_2不同的是,它的元语复用了中间结果来加速计算。

(3)另外, 2D 和3D Linear Geometric Kernel 提供了三个投射traits类(projective traits classes ),分别是Projection_traits_xy_3Projection_traits_xz_3, 的Projection_traits_yz_3,用于计算3维点投射到三个坐标平面的点集的凸包。

6 Convexity Checking

The functions is_ccw_strongly_convex_2() and is_cw_strongly_convex_2() check whether a given sequence of 2D points forms a (counter)clockwise strongly convex polygon. These are used in postcondition testing of the two-dimensional convex hull functions.

函数is_ccw_strongly_convex_2() 和is_cw_strongly_convex_2() 检查给定一个序列的2D点集是否形成一个(顺)逆时针的强凸多边形。这些函数用于对2维凸包函数的后置条件进行测试。

2D Convex Hulls and Extreme Points( Convex Hull Algorithms) CGAL 4.13 -User Manual的更多相关文章

  1. 2D and 3D Linear Geometry Kernel ( Geometry Kernels) CGAL 4.13 -User Manual

    1 Introduction CGAL, the Computational Geometry Algorithms Library, is written in C++ and consists o ...

  2. 2D Polygons( Poygon) CGAL 4.13 -User Manual

    1 Introduction A polygon is a closed chain of edges. Several algorithms are available for polygons. ...

  3. 2D Circular Geometry Kernel ( Geometry Kernels) CGAL 4.13 -User Manual

    1 Introduction The goal of the circular kernel is to offer to the user a large set of functionalitie ...

  4. Android + OpenCV - Finding extreme points in contours

    原文链接:http://answers.opencv.org/question/134783/android-opencv-finding-extreme-points-in-contours/ 导 ...

  5. 【UVa11426】GCD - Extreme (II)(莫比乌斯反演)

    [UVa11426]GCD - Extreme (II)(莫比乌斯反演) 题面 Vjudge 题解 这.. 直接套路的莫比乌斯反演 我连式子都不想写了 默认推到这里把.. 然后把\(ans\)写一下 ...

  6. Realtime Multi-Person 2D Pose Estimation using Part Affinity Fields(理解)

    0 - 人体姿态识别存在的挑战 图像中的个体数量.尺寸大小.位置均未知 个体间接触.遮挡等影响检测 实时性要求较高,传统的自顶向下方法运行时间随着个体数越多而越长 1 - 整体思路 整个模型架构是自底 ...

  7. Realtime Multi-Person 2D Pose Estimation using Part Affinity Fields(翻译)

    0 - Abstract 我们提出了一种方法去在一张图片中有效地识别多个人体的2D姿势.这个方法使用了一个无参数表示法,我们将其叫为Part Affinity Fields(PAFs),其是去在图片中 ...

  8. R语言:多个因变量时,如何在plot函数中画多条曲线(plot,points,lines,legend函数)

    最近阅读一篇文献<Regional and individual variations in the function of the human eccrine sweat gland>, ...

  9. Visible Lattice Points (莫比乌斯反演)

    Visible Lattice Points 题意 : 从(0,0,0)出发在(N,N,N)范围内有多少条不从重合的直线:我们只要求gcd(x,y,z) = 1; 的点有多少个就可以了: 比如 : 点 ...

随机推荐

  1. 【JVM】浅谈双亲委派和破坏双亲委派

    一.前言 笔者曾经阅读过周志明的<深入理解Java虚拟机>这本书,阅读完后自以为对jvm有了一定的了解,然而当真正碰到问题的时候,才发现自己读的有多粗糙,也体会到只有实践才能加深理解,正应 ...

  2. Paypal支付

    <!--Paypal支付数据开始--> <input type="hidden" name="charset" value="utf ...

  3. Stripies

    /* Our chemical biologists have invented a new very useful form of life called stripies (in fact, th ...

  4. cubieboard网络设置

    1.1 配置静态ip vi /etc/network/interface auto lo iface lo inet loopback #以下是添加的内如 auto eth0 #iface eth0 ...

  5. js实现a_b变成A B的两种方法

    1.var key = 'a_b'; var a = key.replace(/\b.|_./g, function (i) { if (i.length === 2) { i = ' ' + i[1 ...

  6. 第二章:冠词(Les articles)

    ★定冠词(Les articles définis ): 阳性单数:le(l') 阴性单数:la(l') 阴阳性复数:les ()表示前面已经提到的人或事物: ()有关的名词已被其它的成分(补语,关系 ...

  7. 数据库面试sql

    问题一:.有三张表,学生表S,课程表C,学生课程表SC 01:写出建表语句 答: create table s(id integer primary key,name varchar(20)); cr ...

  8. UVaLive 2796 Concert Hall Scheduling (最小费用流)

    题意:个著名的音乐厅因为财务状况恶化快要破产,你临危受命,试图通过管理的手段来拯救它,方法之一就是优化演出安排,既聪明的决定接受或拒绝哪些乐团的演出申请,使得音乐厅的收益最大化.该音乐厅有两个完全相同 ...

  9. HDU 1040 As Easy As A+B (排序。。。水题)

    题意:给定n个数,让你从小到大排序. 析:不说什么了. 代码如下: #include <cstdio> #include <iostream> #include <cst ...

  10. Android绘图板的开发

    >>继承自View >>使用Canvas绘图 每次View组件上的图形状态数据发生了改变,都应该通知View组件重写调用onDraw(Canvas canvas)方法重绘该组件 ...