gpt4 book ai didi

python - numpy 二维数组 : get indices of all entries that are connected and share the same value

转载 作者:太空宇宙 更新时间:2023-11-04 02:28:36 24 4
gpt4 key购买 nike

我有一个 2D numpy 数组,其中填充了从 0 到 N 的整数值,我如何才能获得直接连接并共享相同值的所有条目的索引。

补充:大部分条目为零,可以忽略!

示例输入数组:

[ 0 0 0 0 0 ]
[ 1 1 0 1 1 ]
[ 0 1 0 1 1 ]
[ 1 0 0 0 0 ]
[ 2 2 2 2 2 ]

希望的输出指标:

1: [ [1 0] [1 1] [2 1] [3 0] ] # first 1 cluster
[ [1 3] [1 4] [2 3] [2 4] ] # second 1 cluster

2: [ [4 0] [4 1] [4 2] [4 3] [4 4] ] # only 2 cluster

输出数组的格式并不重要,我只需要可以处理单个索引的分离值簇

我首先想到的是:

N = numberClusters
x = myArray

for c in range(N):
for i in np.where(x==c):
# fill output array with i

但这错过了具有相同值的集群的分离

最佳答案

您可以使用 skimage.measure.label (如果需要,使用 pip install scikit-image 安装它)为此:

import numpy as np
from skimage import measure

# Setup some data
np.random.seed(42)
img = np.random.choice([0, 1, 2], (5, 5), [0.7, 0.2, 0.1])
# [[2 0 2 2 0]
# [0 2 1 2 2]
# [2 2 0 2 1]
# [0 1 1 1 1]
# [0 0 1 1 0]]

# Label each region, considering only directly adjacent pixels connected
img_labeled = measure.label(img, connectivity=1)
# [[1 0 2 2 0]
# [0 3 4 2 2]
# [3 3 0 2 5]
# [0 5 5 5 5]
# [0 0 5 5 0]]

# Get the indices for each region, excluding zeros
idx = [np.where(img_labeled == label)
for label in np.unique(img_labeled)
if label]
# [(array([0]), array([0])),
# (array([0, 0, 1, 1, 2]), array([2, 3, 3, 4, 3])),
# (array([1, 2, 2]), array([1, 0, 1])),
# (array([1]), array([2])),
# (array([2, 3, 3, 3, 3, 4, 4]), array([4, 1, 2, 3, 4, 2, 3]))]

# Get the bounding boxes of each region (ignoring zeros)
bboxes = [area.bbox for area in measure.regionprops(img_labeled)]
# [(0, 0, 1, 1),
# (0, 2, 3, 5),
# (1, 0, 3, 2),
# (1, 2, 2, 3),
# (2, 1, 5, 5)]

可以使用非常有用的函数 skimage.measure.regionprops 找到边界框,其中包含有关该地区的大量信息。对于边界框,它返回一个 (min_row, min_col, max_row, max_col) 的元组,其中属于边界框的像素在半开区间 [min_row; max_row)[min_col; max_col).

关于python - numpy 二维数组 : get indices of all entries that are connected and share the same value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49771746/

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