Created
August 29, 2013 17:10
-
-
Save vighneshbirodkar/6380784 to your computer and use it in GitHub Desktop.
camera code
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 * | |
import time | |
cam = Camera(threaded = True) | |
c = 0 | |
time.sleep(1) | |
while True: | |
cam.getImage().show() | |
print c | |
c +=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment