当前位置:主页 > 软件编程 > Python代码 >
时间: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])