This file contains 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
#!/usr/bin/python | |
# capture an image every x seconds | |
# JMS 2017 | |
# | |
WAIT=60 # sleep time in seconds | |
import cv2 | |
import time | |
print("Press 'q' to stop.") |