numpy 3d to 2d transformation based on 2d mask array

前端 未结 2 355
栀梦
栀梦 2021-01-19 08:36

If I have an ndarray like this:

>>> a = np.arange(27).reshape(3,3,3)
>>> a
array([[[ 0,  1,  2],
        [ 3,  4,  5],
        [ 6,  7,  8]         


        
2条回答
  •  囚心锁ツ
    2021-01-19 09:17

    Here is some magic numpy indexing that will do what you want, but unfortunately it's pretty unreadable.

    def apply_mask(a, indices, axis):
        magic_index = [np.arange(i) for i in indices.shape]
        magic_index = np.ix_(*magic_index)
        magic_index = magic_index[:axis] + (indices,) + magic_index[axis:]
        return a[magic_index]
    

    or equally unreadable:

    def apply_mask(a, indices, axis):
        magic_index = np.ogrid[tuple(slice(i) for i in indices.shape)]
        magic_index.insert(axis, indices)
        return a[magic_index]
    

提交回复
热议问题