mirror of
https://github.com/bendtherules/pytry.git
synced 2026-08-18 13:53:01 +00:00
10 lines
225 B
Python
10 lines
225 B
Python
import SimpleCV as s
|
|
import time
|
|
cam=s.Camera()
|
|
#cam=s.JpegStreamCamera(r"192.168.173.227:8080/videofeed")
|
|
c1=time.clock()
|
|
for a in range(200):
|
|
img=cam.getImage()#.show()
|
|
c2=time.clock()
|
|
print(1/(c1-c2))
|
|
c1=c2 |