gpt4 book ai didi

python - 与曼哈顿距离的距离变换 - Python/NumPy/SciPy

转载 作者:行者123 更新时间:2023-11-30 21:52:01 29 4
gpt4 key购买 nike

我想使用 Python 和 Numpy 生成这样的二维数组:

[
[0, 1, 2, 3, 4, 4, 3, 4],
[1, 2, 3, 4, 4, 3, 2, 3],
[2, 3, 4, 4, 3, 2, 1, 2],
[3, 4, 4, 3, 2, 1, 0, 1],
[4, 5, 5, 4, 3, 2, 1, 2]
]

几乎所有数字都是从零开始左右分布的。该矩阵允许查看任意点到最接近的零的距离。我以为这个矩阵很常见,但我在网上找不到任何内容,甚至连它的名字也找不到。如果您有有效生成此类矩阵的代码或至少知道它是如何调用的,请告诉我。

谢谢

最佳答案

这里有 Scipy cdist -

from scipy.spatial.distance import cdist

def bwdist_manhattan(a, seedval=1):
seed_mask = a==seedval
z = np.argwhere(seed_mask)
nz = np.argwhere(~seed_mask)

out = np.zeros(a.shape, dtype=int)
out[tuple(nz.T)] = cdist(z, nz, 'cityblock').min(0).astype(int)
return out

在 MATLAB 中,它称为 Distance transform of binary image ,因此这里给出了一个派生名称。

示例运行 -

In [60]: a # input binary image with 1s at "seed" positions
Out[60]:
array([[1, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 1, 0],
[0, 0, 0, 0, 0, 0, 0, 0]])

In [61]: bwdist_manhattan(a)
Out[61]:
array([[0, 1, 2, 3, 4, 4, 3, 4],
[1, 2, 3, 4, 4, 3, 2, 3],
[2, 3, 4, 4, 3, 2, 1, 2],
[3, 4, 4, 3, 2, 1, 0, 1],
[4, 5, 5, 4, 3, 2, 1, 2]])

关于python - 与曼哈顿距离的距离变换 - Python/NumPy/SciPy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59998392/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com