gpt4 book ai didi

python - 如何根据给定值计算空间距离矩阵

转载 作者:行者123 更新时间:2023-12-01 08:57:13 30 4
gpt4 key购买 nike

我一直在寻找一种方法(有效地)根据目标值和输入矩阵计算距离矩阵。

如果您将输入数组视为:

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

如何计算与目标值 0 相关的空间距离矩阵?

即每个像素到最近的 0 值的距离是多少?

提前致谢

最佳答案

您正在寻找scipy.ndimage.morphology.distance_transform_edt 。它对二进制数组进行操作,并计算每个 TRUE 位置到最近的背景 FALSE 位置的欧氏距离。在我们的例子中,由于我们想要找出距最近的 0 的距离,因此背景为 0。现在,在幕后,它将输入转换为二进制数组,假设 0 作为背景,因此我们可以将其与默认参数一起使用。因此,它会很简单 -

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

In [180]: from scipy import ndimage

In [181]: ndimage.distance_transform_edt(a)
Out[181]:
array([[0. , 0. , 1. , 2. , 3. , 3.16, 3. ],
[0. , 0. , 1. , 2. , 2.83, 2.24, 2. ],
[0. , 1. , 1.41, 2.24, 2.24, 1.41, 1. ],
[1. , 1.41, 2.24, 2.83, 2. , 1. , 0. ]])

解决一般情况

现在,假设我们想要找出距最近的 1s 的距离,那么它就是 -

In [183]: background = 1 # element from which distances are to be computed

# compare this with original array, a to verify
In [184]: ndimage.distance_transform_edt(a!=background)
Out[184]:
array([[2. , 1. , 0. , 1. , 2. , 1. , 0. ],
[1.41, 1. , 1. , 1.41, 2. , 1. , 0. ],
[1. , 0. , 0. , 1. , 2. , 1. , 0. ],
[0. , 0. , 0. , 1. , 2. , 1.41, 1. ]])

关于python - 如何根据给定值计算空间距离矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52720016/

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