錯(cuò)誤寫(xiě)法:
len(np.where((img[:,:, 0] > 0 |img[:,:, 1] == 0|img[:,:, 2] == 0))[0])/3
正確寫(xiě)法:
len(np.where((img[:,:, 0] > 0) |(img[:,:, 1] == 0)|(img[:,:, 2] == 0))[0])/3
&的內(nèi)容用括號(hào)括起來(lái)就好了
錯(cuò)誤寫(xiě)法:
len(np.where((img[:,:, 0] > 0 |img[:,:, 1] == 0|img[:,:, 2] == 0))[0])/3
正確寫(xiě)法:
len(np.where((img[:,:, 0] > 0) |(img[:,:, 1] == 0)|(img[:,:, 2] == 0))[0])/3
&的內(nèi)容用括號(hào)括起來(lái)就好了