1

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

4

1 回答 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 回答