python-元素的numpy条件格式

我有一个3D numpy数组,想基于另一个元素的条件测试来更改特定元素. (应用程序是更改RGBA图像阵列的“ alpha”以与3D pyqtgraph图像中的透明度一起使用-理想情况下应该非常快).

a= np.ones((2,4,5),dtype=np.int) #create a ones array
a[0,0,0] = 3 #change a few values
a[0,2,0] = 3
a[1,2,0] = 3
print(a)
>>>[[[3 1 1 1 1]
  [1 1 1 1 1]
  [3 1 1 1 1]]

 [[1 1 1 1 1]
  [1 1 1 1 1]
  [3 1 1 1 1]]]

现在,我要有条件地测试最小维度(??)的第一个元素,然后根据结果更改最后一个元素.

if a[0,:,:] > 1:   #this does not work - for example only - if first element > 1
    a[3,:,:]=255   #then change the last element in the same dimension to 255

print(a) #this is my idealized result
>>>[[[3 1 1 1 255]
  [1 1 1 1 1]
  [3 1 1 1 255]]

 [[1 1 1 1 1]
  [1 1 1 1 1]
  [3 1 1 1 255]]]

解决方法:

这似乎可以解决问题:

mask = a[:,:,0] > 1

a[:,:,4][mask] = 255

因此,索引只需稍有不同,这只是应用蒙版的标准做法.

编辑
@Ophion显示这更好地写为:

a[mask,:,-1] = 255
上一篇:python – pyqtgraph – ImportError:没有名为pyqtgraph的模块


下一篇:pyqtgraph:保存/导出3D图形