I'm trying to have my webcam do the following:
- capture 10 captures for 1 minute duration (one capture every 6 seconds).
- Then save them into an array or on the computer.
- Then get other captures for 5 minutes duration (one capture every 6 seconds) and compare each capture with the first array.
so far I have this code:
import cv
cv.NamedWindow("Camera", 1)
# in case im using another camera:
cv.NamedWindow("Camera", 2)
capture = cv.CaptureFromCAM(0)
img = cv.QueryFrame(capture)
while True:
img = cv.QueryFrame(capture)
cv.ShowImage("Camera", img)
if cv.WaitKey(10) == 27:
break
cv.DestroyWindow("Camera")
How do I proceed with this? any ideas? thanks in advance.