切片索引必须是整数或无,或具有_index__method

时间:2019-06-09 10:04:40

标签: python spyder mask photo

我正在尝试使用Python进行操作,出现以下错误消息:  切片索引必须为整数或无,或具有 index 方法

width = test_mask1.shape[0]
height = test_mask1.shape[1]
test_mask1_width = width / 20
test_mask1_height = height / 20

test_mask1[0:test_mask1_width, 0:test_mask1_width] = 0
test_mask1[0:test_mask1_width, height-test_mask1_width:height] = 0
test_mask1[width-test_mask1_width:width, height-test_mask1_width:height] = 0
test_mask1[width-test_mask1_width:width, 0:test_mask1_width] = 0

0 个答案:

没有答案