質問編集履歴

2

文法修正

2019/05/25 07:11

投稿

matrix99999
matrix99999

スコア15

test CHANGED
File without changes
test CHANGED
@@ -57,3 +57,43 @@
57
57
  cv2.imshow("?????", img)
58
58
 
59
59
  ```
60
+
61
+
62
+
63
+
64
+
65
+ 編集:
66
+
67
+
68
+
69
+ ```html
70
+
71
+ import numpy as np
72
+
73
+ import cv2
74
+
75
+ import os
76
+
77
+ %matplotlib inline
78
+
79
+ path = "./data/"
80
+
81
+ files = os.listdir(path)
82
+
83
+ files_file = [f for f in files if os.path.isfile(os.path.join(path, f))]
84
+
85
+
86
+
87
+
88
+
89
+ for item in files_file:
90
+
91
+ img = cv2.imread(os.path.join(path, item))
92
+
93
+ cv2.imshow(item, img)
94
+
95
+ cv2.waitKey(0)
96
+
97
+ cv2.destroyAllWindows()
98
+
99
+ ```

1

誤字

2019/05/25 07:11

投稿

matrix99999
matrix99999

スコア15

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,6 @@
1
1
  python openCVを利用して文字認証を考えています。
2
2
 
3
- ちなみに作成挑戦です。
3
+ ちなみに作成挑戦です。
4
4
 
5
5
  今までは座学にて勉強していました。
6
6