All the previous files

This commit is contained in:
bendtherules
2014-02-05 10:44:04 +05:30
commit 12135f9a60
160 changed files with 8827 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import SimpleCV as s
import math as m
import random
c=s.Camera()
d=s.Display()
i1=c.getImage()
while d.isNotDone:
i2=c.getImage()
#i2=i2.pixelize(10)
i3=i1-i2
i1=i2
i3.save(d)