質問編集履歴
1
詳細内容追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
|
10
10
|
|
11
|
-
**工夫点**
|
11
|
+
**工夫点してみたこと**
|
12
12
|
|
13
13
|
①
|
14
14
|
|
@@ -16,13 +16,35 @@
|
|
16
16
|
|
17
17
|
cv2.imwrite('{}_{}_{}.{}'.format(base_path, datetime.datetime.now().strftime('%Y%m%d%H%M'), digit, ext), frame)
|
18
18
|
|
19
|
-
→
|
19
|
+
→保存画像のファイル名:capture_202012211018_2.png
|
20
20
|
|
21
21
|
|
22
22
|
|
23
23
|
②cv2.imwrite('{}_{}_{}.{}'.format(base_path, datetime.datetime.now().strftime('%Y%m%d%f'), f{i:03d},ext), frame)
|
24
24
|
|
25
|
-
→f{i:03d}が名称NG
|
25
|
+
→f{i:03d}が名称NGで実行できない
|
26
|
+
|
27
|
+
表示されるエラー内容
|
28
|
+
|
29
|
+
File "c:\Users\takamatsu-k\Desktop\change_gui\logicool4.py", line 29
|
30
|
+
|
31
|
+
cv2.imwrite('{}_{}_{}.{}'.format(base_path, datetime.datetime.now().strftime('%Y%m%d%f'), f{i:03d},ext), frame) ^
|
32
|
+
|
33
|
+
SyntaxError: invalid syntax
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
私の目標としては
|
38
|
+
|
39
|
+
capture_202012211018_1.png
|
40
|
+
|
41
|
+
capture_202012211018_2.png
|
42
|
+
|
43
|
+
...
|
44
|
+
|
45
|
+
capture_202012211018_n.png
|
46
|
+
|
47
|
+
です
|
26
48
|
|
27
49
|
|
28
50
|
|