ウィジェットをディスプレイに配置するなど、SimpleCVとTKinterを組み合わせた例を知っている人はいますか? 前もって感謝します。
質問する
559 次
1 に答える
1
これについては、次のヘルプ フォーラムで回答しました: http://help.simplecv.org
しかし、メッセージを伝えるために、ここに例を示します: https://github.com/ingenuitas/SimpleCV/blob/develop/SimpleCV/examples/display/tkinter-example.py
コードは次のとおりです。
import SimpleCV
import ImageTk #This has to be installed from the system repos
import Tkinter
import time
Tkinter.Tk()
image = SimpleCV.Image('http://i.imgur.com/FTKqh.jpg') #load the simplecv logo from the web
photo = ImageTk.PhotoImage(image.getPIL())
label = Tkinter.Label(image=photo)
label.image = photo # keep a reference!
label.pack() #show the image
time.sleep(5)
于 2012-10-03T12:37:10.683 に答える