给定两个重叠的任意多边形,找到最佳旋转以最大化重叠

发布于 2024-10-17 03:00:18 字数 79 浏览 2 评论 0原文

我有两个任意的多边形,它们的形状可能相同,也可能不同,我正在寻找一种关于简单算法的建议,该算法将旋转其中一个多边形以最小化两者之间的差异。谢谢。

I have two arbitrary polygons that may or may not be the same shape, I'm looking for a advice on a simple algorithm that will rotate one of the polygons to minimize the difference between the two. Thanks.

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

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

发布评论

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

评论(1

笑看君怀她人 2024-10-24 03:00:18

如果您想让它们更加相似,您可以尝试最小化两个多边形之间的差异面积。也就是说,两者的并集面积减去它们之间的交集面积。

一种近似方法是找到每个多边形中距离最大的两个点(我们称它们为“直径”),并将这两个多边形对齐。

例如:

  • 多边形 A = <代码>[(13, 12); (9, 14); (1,4); (5, 2)](菱形)
    • 直径 = <代码>[(13, 12); (1,4)](长度14.4
  • 多边形 B = [(14, 11); (8、17); (3,24); (9, 18)](另一个菱形)
    • 直径 = <代码>[(14, 11); (3,24)](长度17.0

多边形 B 移动并旋转,使直径对齐:

[(14.08465297, 12.72310198); (7.439737081, 7.446257009);
 (-0.084652970, 3.276898021); (6.560262919, 8.553742991)]

“菱形”

If you are trying to make them more similar, you could try to minimize the area of the difference between the two polygons. That is, the area of the union of the two, minus, the area of the intersection between them.

An approximation would be to find the two points with maximum distance in each polygon (lets call them 'diameters'), and align those for the two polygons.

For example:

  • Polygon A = [(13, 12); (9, 14); (1,4); (5, 2)] (a rhombus)
    • Diameter = [(13, 12); (1,4)] (length 14.4)
  • Polygon B = [(14, 11); (8, 17); (3,24); (9, 18)] (another rhombus)
    • Diameter = [(14, 11); (3,24)] (length 17.0)

Polygon B shifted and rotated so diameters align:

[(14.08465297, 12.72310198); (7.439737081, 7.446257009);
 (-0.084652970, 3.276898021); (6.560262919, 8.553742991)]

Rhombuses

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