回答編集履歴

1

一部修正

2020/10/17 03:25

投稿

nto
nto

スコア1438

test CHANGED
@@ -58,17 +58,13 @@
58
58
 
59
59
  dst = np.zeros((height, width, 3), dtype='uint8')
60
60
 
61
- for y in range(0, height):
61
+
62
62
 
63
- for x in range(0, width):
64
63
 
65
- if (mask[y][x] > 240).all():
66
64
 
67
- dst[y][x] = src[y][x]
65
+ # 行いたい画像の処理
68
66
 
69
- else:
70
67
 
71
- dst[y][x] = 0
72
68
 
73
69
 
74
70