gpt4 book ai didi

python - 按最近的 "seed"区域对 Python 数组进行分类?

转载 作者:太空狗 更新时间:2023-10-29 17:07:02 27 4
gpt4 key购买 nike

我有一个生态栖息地栅格,我已将其转换为二维 Python numpy 数组(下面的 example_array)。我还有一个数组,其中包含具有唯一值的“种子”区域(下面的 seed_array),我想用它来对我的栖息地区域进行分类。我想将我的种子区域“生长”到我的栖息地区域中,以便为栖息地分配最近的种子区域的 ID,“通过”栖息地区域进行测量。例如:

Image of arrays

我最好的方法是使用 ndimage.distance_transform_edt 函数来创建一个数组,该数组描述了数据集中每个单元格最近的“种子”区域,然后将其替换回栖息地数组。然而,这并不是特别有效,因为该函数不测量“通过”我的栖息地区域的距离,例如下面的红色圆圈代表错误分类的单元格:

Incorrect output using ndimage

下面是我的栖​​息地和种子数据的示例数组,以及我正在寻找的输出类型的示例。我的实际数据集要大得多——超过一百万个栖息地/种子区域。任何帮助将不胜感激!

import numpy as np
import scipy.ndimage as ndimage
import matplotlib.pyplot as plt

# Sample study area array
example_array = np.array([[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1],
[0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1],
[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0],
[1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1],
[1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1],
[1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1],
[1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0],
[1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0],
[1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0],
[1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]])

# Plot example array
plt.imshow(example_array, cmap="spectral", interpolation='nearest')

seed_array = np.array([[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 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, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 1, 1, 1, 0, 0, 2, 2, 0, 0, 0, 0],
[0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 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, 0, 0, 0]])

# Plot seeds
plt.imshow(seed_array, cmap="spectral", interpolation='nearest')

desired_output = np.array([[0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 4, 4, 4, 0, 0, 0, 3, 3, 3],
[0, 0, 0, 0, 4, 4, 0, 0, 0, 3, 3, 3],
[0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0],
[1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 3, 3],
[1, 1, 0, 1, 0, 0, 0, 0, 2, 2, 3, 3],
[1, 1, 1, 1, 0, 0, 2, 2, 2, 0, 0, 3],
[1, 1, 1, 1, 1, 2, 2, 2, 2, 0, 0, 0],
[1, 1, 1, 1, 0, 0, 2, 2, 2, 0, 0, 0],
[1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0],
[1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]])

# Plot desired output
plt.imshow(desired_output, cmap="spectral", interpolation='nearest')

最佳答案

您可以使用 watershed segmentation来自 scikits-image:

  • 距离变换

    from scipy import ndimage as nd
    distance = nd.distance_transform_edt(example_array)
  • 分水岭分割

    from skimage.morphology import watershed, square
    result = watershed(-distance, seed_array, mask=example_array, \
    connectivity=square(3))
  • 结果

    subplot(1,2,1)
    imshow(-distance, 'spectral', interpolation='none')
    subplot(1,2,2)
    imshow(result, 'spectral', interpolation='none')

enter image description here


作为另一种变体,按照您最初的方法,您可以使用分水岭来找到与最近的种子相连的邻居。正如您在问题中提到的:

  • 计算到种子的距离:

    distance = nd.distance_transform_edt(seed_array == 0)
  • 计算距离空间的分水岭:

    result = watershed(distance, seed_array, mask=example_array, \
    connectivity=square(3))
  • 绘图结果:

    figure(figsize=(9,3))
    subplot(1,3,1)
    imshow(distance, 'jet', interpolation='none')
    subplot(1,3,2)
    imshow(np.ma.masked_where(example_array==0, distance), 'jet', interpolation='none')
    subplot(1,3,3)
    imshow(result, 'spectral', interpolation='none')

enter image description here


进一步讨论:分水岭方法试图通过流动图像梯度从种子峰增长区域。由于您的图像是二进制的,因此区域将从种子点向各个方向均匀扩展,从而为您提供两个区域之间的点。有关分水岭的更多信息,请参阅 wikipedia .

在第一个例子中,距离变换是在原始图像中计算的,因此区域从种子开始平均扩展,直到它们到达中间的 split 点。

在第二个示例中,计算从所有像素到任何种子点的距离变换,然后在该空间中应用分水岭。 Watershed 基本上会将每个像素分配给它最近的种子,但它会添加连接约束。

注意绘图和分水岭的距离图中的符号差异。

注意在距离图中(两个图中的左图),蓝色表示近,红色表示远。

关于python - 按最近的 "seed"区域对 Python 数组进行分类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31848309/

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