gpt4 book ai didi

python - 如何通过索引列表过滤 numpy 数组?

转载 作者:太空狗 更新时间:2023-10-29 22:00:50 25 4
gpt4 key购买 nike

我有一个 numpy 数组,filtered__rows,由 LAS 数据[x, y, z, intensity, classification] 组成。我创建了一个点的 cKDTree 并找到了最近的邻居 query_ball_point,它是点及其邻居的索引列表。

有没有一种方法可以过滤 filtered__rows 以创建一个仅包含其索引在 query_ball_point 返回的列表中的点的数组?

最佳答案

看起来您只需要一个基本的 integer array indexing :

filter_indices = [1,3,5]
np.array([11,13,155,22,0xff,32,56,88])[filter_indices]

关于python - 如何通过索引列表过滤 numpy 数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19821425/

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