1 2 3 4 5 6 7 | #import eyes17.eyes # uncomment these two lines while running stand-alone
#p = eyes17.eyes.open()
from pylab import *
x,y = p.capture1('A1',10,10)
plot(x,y)
show()
|
1 2 3 4 5 6 7 | #import eyes17.eyes # uncomment these two lines while running stand-alone
#p = eyes17.eyes.open()
from pylab import *
x,y = p.capture1('A1',10,10)
plot(x,y)
show()
|