python-2.7 - 确定点是否在旋转矩形内(仅限标准 Python 2.7 库)

标签 python-2.7 math geometry coordinates jython-2.7

<分区>

我有一个以这些坐标为顶点的旋转矩形:

   1   670273   4879507
   2   677241   4859302
   3   670388   4856938
   4   663420   4877144

enter image description here


我有这些坐标点:

670831  4867989
675097  4869543

仅使用 Python 2.7 标准库,我想确定这些点是否落在旋转的矩形内。

  • 我无法将额外的 Python 库添加到我的 Jython 实现中

要做到这一点需要什么?

最佳答案

可以从 2 个点构造 ax+by+c==0 形式的线方程。对于要在凸形内部的给定点,我们需要测试它是否位于由形状边缘定义的每条线的同一侧。

在纯 Python 代码中,注意编写避免除法的方程式,可以如下所示:

def is_on_right_side(x, y, xy0, xy1):
    x0, y0 = xy0
    x1, y1 = xy1
    a = float(y1 - y0)
    b = float(x0 - x1)
    c = - a*x0 - b*y0
    return a*x + b*y + c >= 0

def test_point(x, y, vertices):
    num_vert = len(vertices)
    is_right = [is_on_right_side(x, y, vertices[i], vertices[(i + 1) % num_vert]) for i in range(num_vert)]
    all_left = not any(is_right)
    all_right = all(is_right)
    return all_left or all_right

vertices = [(670273, 4879507), (677241, 4859302), (670388, 4856938), (663420, 4877144)]

下图针对多个形状直观地测试了代码。请注意,对于具有水平线和垂直线的形状,通常的线方程可能会导致被零除。

import matplotlib.pyplot as plt
import numpy as np

vertices1 = [(670273, 4879507), (677241, 4859302), (670388, 4856938), (663420, 4877144)]
vertices2 = [(680000, 4872000), (680000, 4879000), (690000, 4879000), (690000, 4872000)]
vertices3 = [(655000, 4857000), (655000, 4875000), (665000, 4857000)]
k = np.arange(6)
r = 8000
vertices4 = np.vstack([690000 + r * np.cos(k * 2 * np.pi / 6), 4863000 + r * np.sin(k * 2 * np.pi / 6)]).T
all_shapes = [vertices1, vertices2, vertices3, vertices4]

for vertices in all_shapes:
    plt.plot([x for x, y in vertices] + [vertices[0][0]], [y for x, y in vertices] + [vertices[0][1]], 'g-', lw=3)
for x, y in zip(np.random.randint(650000, 700000, 1000), np.random.randint(4855000, 4880000, 1000)):
    color = 'turquoise'
    for vertices in all_shapes:
        if test_point(x, y, vertices):
            color = 'tomato'
    plt.plot(x, y, '.', color=color)
plt.gca().set_aspect('equal')
plt.show()

test plot

PS:如果您运行的是 32 位版本的 numpy,对于这种大小的整数,可能需要将值转换为 float 以避免溢出。

如果这种计算需要经常进行,可以预先计算并存储 a,b,c 值。如果已知边的方向,则只需要 all_leftall_right 之一。

当形状固定后,可以生成函数的文本版本:

def generate_test_function(vertices, is_clockwise=True, function_name='test_function'):
    ext_vert = list(vertices) + [vertices[0]]
    unequality_sign = '>=' if is_clockwise else '<='
    print(f'def {function_name}(x, y):')
    parts = []
    for (x0, y0), (x1, y1) in zip(ext_vert[:-1], ext_vert[1:]):
        a = float(y1 - y0)
        b = float(x0 - x1)
        c = a * x0 + b * y0
        parts.append(f'({a}*x + {b}*y {unequality_sign} {c})')
    print('    return', ' and '.join(parts))

vertices = [(670273, 4879507), (677241, 4859302), (670388, 4856938), (663420, 4877144)]
generate_test_function(vertices)

这将生成一个函数:

def test_function(x, y):
    return (-20205.0*x + -6968.0*y >= -47543270741.0) and (-2364.0*x + 6853.0*y >= 31699798882.0) and (20206.0*x + 6968.0*y >= 47389003912.0) and (2363.0*x + -6853.0*y >= -31855406372.0)

此函数然后可以由 Jython 编译器复制粘贴和优化。请注意,形状不必是矩形。任何凸形都可以,允许使用更紧凑的盒子。

关于python-2.7 - 确定点是否在旋转矩形内(仅限标准 Python 2.7 库),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63527698/

相关文章:

python-2.7 - Hadoop的STDERR输出,这是否意味着一些问题?

algorithm - 如何在加权(无向)图中的两个节点之间找到长度为 X 的路径

c - 晶体管的C/数学模型

java - 如何使用坐标检查点是否位于三角形内部?

python - 需要正则表达式的帮助来获取强制值之后的任何内容

python - 上传期间回调中的增量变量

python - 在 C 中,从函数返回 2 个变量

java - 是第二个角左边或右边的角

algorithm - 查找线交叉点算法

javascript - 在 Three.js 中使用 FBXLoader 将 BufferGeometry 转换为 Geometry