質問編集履歴
2
コードを追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,6 +20,100 @@
|
|
20
20
|
|
21
21
|
|
22
22
|
|
23
|
+
### 該当のソースコード
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
```python
|
28
|
+
|
29
|
+
def button1_clicked():
|
30
|
+
|
31
|
+
fTyp = [("","*")]
|
32
|
+
|
33
|
+
iDir = os.path.abspath(os.path.dirname(__file__))
|
34
|
+
|
35
|
+
filePath = filedialog.askopenfilename(filetypes=fTyp, initialdir=iDir)
|
36
|
+
|
37
|
+
file1.set(filePath)
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
def button2_clicked():
|
44
|
+
|
45
|
+
img = cv2.imread(file1.get(), 0)
|
46
|
+
|
47
|
+
cv2.imshow('test', img)
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
if __name__ == '__main__':
|
52
|
+
|
53
|
+
root = tk.Tk()
|
54
|
+
|
55
|
+
root.title('Dust Counter')
|
56
|
+
|
57
|
+
root.resizable(False, False)
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
frame1 = ttk.Frame(root, padding=10)
|
62
|
+
|
63
|
+
frame1.grid()
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
button1 = ttk.Button(root, text=u'参照', command=button1_clicked)
|
68
|
+
|
69
|
+
button1.grid(row=0, column=3)
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
s = tk.StringVar()
|
74
|
+
|
75
|
+
s.set('ファイル>>')
|
76
|
+
|
77
|
+
label1 = ttk.Label(frame1, textvariable=s)
|
78
|
+
|
79
|
+
label1.grid(row=0, column=0)
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
file1 = tk.StringVar()
|
84
|
+
|
85
|
+
file1_entry = ttk.Entry(frame1, textvariable=file1, width=50)
|
86
|
+
|
87
|
+
file1_entry.grid(row=0, column=2)
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
frame2 = ttk.Frame(root, padding=(0, 5))
|
92
|
+
|
93
|
+
frame2.grid(row=1)
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
button2 = ttk.Button(frame2, text='Start', command=button2_clicked)
|
98
|
+
|
99
|
+
button2.pack(side=tk.LEFT)
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
button3 = ttk.Button(frame2, text='Cancel', command=quit)
|
104
|
+
|
105
|
+
button3.pack(side=tk.LEFT)
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
root.mainloop()
|
110
|
+
|
111
|
+
```
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
|
116
|
+
|
23
117
|
### 試したこと
|
24
118
|
|
25
119
|
|
1
試したことを追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,15 +20,13 @@
|
|
20
20
|
|
21
21
|
|
22
22
|
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
23
|
### 試したこと
|
28
24
|
|
29
25
|
|
30
26
|
|
31
|
-
|
27
|
+
・python3.6に変更してみましたが同じ結果でした。
|
28
|
+
|
29
|
+
・オプションに--debug allを付けてみましたがexe起動時に一瞬だけしかコンソールが立ち上がらないので中身が確認できません。
|
32
30
|
|
33
31
|
|
34
32
|
|