Last active
December 20, 2015 00:09
-
-
Save vighneshbirodkar/6039643 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from SimpleCV import Image | |
from SimpleCV.DisplayNew import GtkDisplay | |
from socket import setdefaulttimeout | |
setdefaulttimeout(None) | |
d1 = GtkDisplay(title = "Resize to fit", fit = GtkDisplay.RESIZE) | |
d2 = GtkDisplay(title = "Crop to fit", fit = GtkDisplay.CROP) | |
img = Image('lenna') | |
fs = img.findLines() | |
fs.draw() | |
d1.showImage(img) | |
d2.showImage(img) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment