边界框内的 numpy 过滤点

numpy filter points within bounding box

我在 numpy 中有一个 2d 点列表 [(x1,y1),(x2,y2),...,(xn,yn)],我如何获得由角 ((bx1,by1),(bx2,by2)) 指定的边界框内的点列表?

如果这是 C++,我会使用 OGC "within" specification in boost geometry 来过滤列表。

现在我只是处理一个 NxN 二维 numpy 数组的索引列表,所以我希望这应该只是 1-2 行 numpy 代码。

结合使用 alllogical_and<= 运算符,一个 能用1行表达主要思想

import random
import numpy as np
from matplotlib import pyplot

points = [(random.random(), random.random()) for i in range(100)]

bx1, bx2 = sorted([random.random(), random.random()])
by1, by2 = sorted([random.random(), random.random()])

pts = np.array(points)
ll = np.array([bx1, by1])  # lower-left
ur = np.array([bx2, by2])  # upper-right

inidx = np.all(np.logical_and(ll <= pts, pts <= ur), axis=1)
inbox = pts[inidx]
outbox = pts[np.logical_not(inidx)]

# this is just for drawing
rect = np.array([[bx1, by1], [bx1, by2], [bx2, by2], [bx2, by1], [bx1, by1]])

pyplot.plot(inbox[:, 0], inbox[:, 1], 'rx',
            outbox[:, 0], outbox[:, 1], 'bo',
            rect[:, 0], rect[:, 1], 'g-')
pyplot.show()