当前位置:主页 > 软件编程 > Python代码 >

Python遍历numpy数组的实例

时间:2020-10-03 10:14:23 | 栏目:Python代码 | 点击:

在用python进行图像处理时,有时需要遍历numpy数组,下面是遍历数组的方法:

[rows, cols] = num.shape 
for i in range(rows - 1): 
 for j in range(cols-1): 
  print(num[j, i]) 

您可能感兴趣的文章:

相关文章