質問編集履歴
1
import部を追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -43,3 +43,23 @@
|
|
43
43
|
canny_image_PIL = Image.fromarray(canny_image)
|
44
44
|
|
45
45
|
```
|
46
|
+
|
47
|
+
```import
|
48
|
+
|
49
|
+
import os,sys
|
50
|
+
|
51
|
+
import cv2
|
52
|
+
|
53
|
+
from PIL import Image, ImageChops, ImageTk
|
54
|
+
|
55
|
+
import numpy as np
|
56
|
+
|
57
|
+
from tkinter import *
|
58
|
+
|
59
|
+
from tkinter import ttk
|
60
|
+
|
61
|
+
from tkinter import filedialog
|
62
|
+
|
63
|
+
from tkinter import messagebox
|
64
|
+
|
65
|
+
```
|