将SimpleCV与TKinter GUI结合使用

时间:2012-10-02 07:18:56

标签: tkinter simplecv

有人知道将SimpleCV与TKinter相结合的示例,例如在显示器上放置一些小部件吗?提前谢谢。

1 个答案:

答案 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)