找到点组中最大可能的多边形

发布于 2024-10-15 07:12:49 字数 129 浏览 2 评论 0原文

如何找到一组点的最大可能多边形?

例如给出以下几点:

0 | 3
4 | 0
1 | 1
0 | 0

->使用第1、2、4个点构建多边形(第3个点无用)

How to find the biggest possible polygon of a group of points?

E.g. the following points are given:

0 | 3
4 | 0
1 | 1
0 | 0

-> Use the 1st, 2nd and 4th point to build a polygon (3rd point is useless)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放我走吧 2024-10-22 07:12:49

您似乎正在寻找的是凸包

示例:

在此处输入图像描述

礼品包装算法是计算凸包的最简单方法,但它并不是最优的。

Chan 算法可能是最简单的最优算法。

哈!

What you seems to be looking for is the Convex Hull.

Example:

enter image description here

The Gift Wrapping Algorithm is the easiest way to calculate the Convex Hull, but it isn't optimal.

Chan's algorithm is probably the simplest optimal algorithm.

HTH!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文