質問編集履歴

1

編集中ソースコードの追加

2020/12/17 08:37

投稿

Monlar
Monlar

スコア1

test CHANGED
File without changes
test CHANGED
@@ -26,4 +26,54 @@
26
26
 
27
27
 
28
28
 
29
- 様々なモジュール等で試してはいたのですが、ドツボにはまり、コードも若干冗長になってしまったので質問させていただいた次第です。アドバイス等お持ちの方がいらっしゃればよろしくお願いいたします。
29
+ 様々なモジュール等で試してはいたのですが、ドツボにはまり、コードも若干冗長になってしまったので質問させていただいた次第です。アドバイス等お持ちの方がいらっしゃればよろしくお願いいたします。作成中コードは以下になります。
30
+
31
+
32
+
33
+ ```Python
34
+
35
+ import os
36
+
37
+ import os.path
38
+
39
+ import cv2
40
+
41
+
42
+
43
+ ImageDir_Path = u"../ImageDir/"
44
+
45
+ Image_List = os.listdir(r'../Image_Dir/')
46
+
47
+
48
+
49
+ for Image_Name in Image_List:
50
+
51
+ if os.path.isfile(ImageDir_Path + Image_List):
52
+
53
+
54
+
55
+ Image = cv2.imread(ImageDir_Path + Image_List)
56
+
57
+ Text = open('../TextDir/*.txt')
58
+
59
+
60
+
61
+      if(filecmp.cmp(Image, Text, shallow=True) = True):
62
+
63
+ "
64
+
65
+ 処理
66
+
67
+ "
68
+
69
+ np.save('../ImageDir1/a0_[%d].png' % i,処理結果) # i = 0,1~9
70
+
71
+
72
+
73
+ else:
74
+
75
+ print("エラー")
76
+
77
+
78
+
79
+ ```