質問編集履歴

1

コメントに関して追記しました

2021/09/09 05:08

投稿

potapotapotato
potapotapotato

スコア13

test CHANGED
File without changes
test CHANGED
@@ -27,3 +27,37 @@
27
27
  使用言語はpythonです。
28
28
 
29
29
  何か良い方法があれば教えてください。よろしくお願いいたします。
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+ 実際にやったことは、以下のようなプログラムです。
38
+
39
+ ```python
40
+
41
+ import cv2
42
+
43
+ import numpy as np
44
+
45
+
46
+
47
+ image = cv2.imread('kuro.png')
48
+
49
+ # 画像の黒い部分を白に置き換える
50
+
51
+ black = [0, 0, 0]
52
+
53
+ white = [255, 255, 255]
54
+
55
+ image[np.where((image == black).all(axis=2))] = white
56
+
57
+
58
+
59
+
60
+
61
+ cv2.imwrite('shiro.png', image)
62
+
63
+ ```