Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up| 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) |