有人知道将SimpleCV与TKinter相结合的示例,例如在显示器上放置一些小部件吗?提前谢谢。
答案 0 :(得分: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)