python numpy统计数组中0元素的个数

使用numpy自带的方法统计数组中0元素或图像中0像素值的个数,比直接遍历好很多。

import numpy as np
a = np.array([[0,1,2],[2,0,0]])
cnt_array = np.where(a,0,1)
print(np.sum(cnt_array))

等于0的元素置为1,求和即可。

你可能感兴趣的:(python图像处理,python,numpy)