前提・実現したいこと
pythonにて任意の画像をCanvas内にグレースケールで表示させ、その画像の左上座標(20, 20, 70, 70)を50×50で切り出して、別に用意したCanvas2に2倍に拡大して表示させたい。
しかし、コードを実行すると切り出した画像では無く、元画像が表示されている様子。
初心者で理解が浅く申し訳ありませんがご教授下さい。
発生している問題・エラーメッセージ
該当のソースコード
python
#ライブラリを取り込む import tkinter as tk from tkinter import filedialog import cv2 from PIL import Image, ImageTk import os import matplotlib.pyplot as plt #ウインドウを作成 win = tk.Tk() win.title("FLIRカメラチルト確認")#タイトル win.geometry("800x500")#サイズ #パーツを配置 #ラベル1を作成 label1 = tk.Label(text='■画像読込') label1.place(x=10, y=10) #ラベル2を作成 label2 = tk.Label(text='ファイル名:') label2.place(x=10, y=40) #ファイルパスの表示欄を作成 input_box1 = tk.Entry(width=75, bd=4) input_box1.place(x=80, y=40) img = None #初期化 #参照ボタンの動作 def file_select(): #ファイルパスを表示欄に表示 idir = r'C:\descktop' filetype = [("すべて","*")] filepath = tk.filedialog.askopenfilename(filetypes = filetype, initialdir = idir) input_box1.delete(0, tk.END) input_box1.insert(0, filepath) #選択したファイルを表示 if filepath and os.path.isfile(filepath): #PILで開きグレースケールに変換 global img #グローバル宣言 img = Image.open(filepath).convert("L") image = ImageTk.PhotoImage(image=img) #画像の情報を取得 h, w = img.size[:] #画像リサイズ image = ImageTk.PhotoImage(img.resize((int(h/10),int(w/10)))) #表示位置調整 cv.image = image cv.create_image(image.width()/2, image.height()/2, image=image) #範囲表示ボタンの動作 def button3_click(): cv.create_rectangle([(20, 20), (70, 70)], outline = "red")#左上 #切り出しボタンの動作 def button4_click(): if img is not None: #値の確認 cropped_img = img.crop((20, 20, 70, 70)) #画像の情報を取得 h, w = cropped_img.size[:] #画像リサイズ cropped_img = ImageTk.PhotoImage(img.resize((int(h*2),int(w*2)))) #表示位置調整 cv2.image = cropped_img cv2.create_image(cropped_img.width()/2, cropped_img.height()/2, image=cropped_img) #Canvasの作成(メイン画像) cv = tk.Canvas(win, width=409, height=300, bg="white",) cv.place(x=10, y=70) #切り抜いた画像の表示 #ラベル3を作成(左上画像) label3 = tk.Label(text='●左上画像') label3.place(x=450, y=110) #Canvasの作成(左上画像) cv2 = tk.Canvas(win, width=100, height=100, bg="white",) cv2.place(x=450, y=130) #ラベル4を作成(右上画像) label4 = tk.Label(text='●右上画像') label4.place(x=630, y=110) #Canvasの作成(右上画像) cv3 = tk.Canvas(win, width=100, height=100, bg="white",) cv3.place(x=630, y=130) #参照ボタン1を作成 button1 = tk.Button(text="参照", command=file_select, width=8, bd=4) button1.place(x=630, y=35) #閉じるボタンを作成 button2 = tk.Button(text="閉じる", command=win.destroy, width=8, bd=4) button2.place(x=730, y=35) #切り出し範囲表示ボタンを作成 button3 = tk.Button(text="範囲表示", command=button3_click, width=10, bd=4) button3.place(x=450, y=70) #切り出し動作ボタンを作成 button4 = tk.Button(text="切り出し", command=button4_click, width=10, bd=4) button4.place(x=540, y=70) #GUIをそのまま表示 win.mainloop()
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
python3.6.1
opencv-python4.2.0.34
Pillow7.1.1
windows8
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/14 00:57
2020/05/14 03:02
2020/05/14 05:28
2020/05/14 06:46
2020/05/14 23:18