简而言之......这是问题所在:
import numpy as np
a = np.array([ 0, 1, 2, 3, 4, 5, 6, 100, 8, 9])
np.where(a==100, -1, a[a])
我期望得到的是: 0, 1, 2, 3, 4, 5, 6, -1, 8, 9
相反,我得到的是:index 100 out of bounds 0<=index<10
我承认索引无效,但不应该 eval a[100] 而是 -1 ......据我了解 numpy.where() 命令结构。
在这个例子中我做错了什么?
只是为了澄清我在这里实际尝试做的是更详细的代码:它是一个查找表数组重新映射过程:
import numpy as np
# gamma-ed look-up table array
lut = np.power(np.linspace(0, 1, 32), 1/2.44)*255.0
def gamma(x):
ln = (len(lut)-1)
idx = np.uint8(x*ln)
frac = x*ln - idx
return np.where( frac == 0.0,
lut[idx],
lut[idx]+(lut[idx+1]-lut[idx])*frac)
# some linear values array to remap
lin = np.linspace(0, 1, 64)
# final look-up remap
gamma_lin = gamma(lin)