我知道我可以通过简单的循环获得真正的位,但循环速度非常慢
locations = []
width, height = mask.shape[0], mask.shape[1]
for x in range(len(0,width)):
for y in range(len(0,height):
if mask[x][y] is 1:
location.append([x,y])
我开玩笑说要避免循环开销。我正在学习 python,但我不明白这个数组 [:] 的东西