This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import tkinter as tk # ウィンドウ作成用 | |
| from tkinter import filedialog # ファイルを開くダイアログ用 | |
| from PIL import Image, ImageTk # 画像データ用 | |
| import numpy as np # アフィン変換行列演算用 | |
| import os # ディレクトリ操作用 | |
| class Application(tk.Frame): | |
| def __init__(self, master=None): | |
| super().__init__(master) | |
| self.pack() |