-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeteorcam.py
41 lines (33 loc) · 860 Bytes
/
meteorcam.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#! /usr/bin/env python
#
# gets images from video/device and detects
# motions
#
import detector
import sys
import thread
import os
import signal
threads = []
def exit_handler(signal, frame):
print 'You pressed Ctrl+C!'
for thread in threads:
thread.stop()
if __name__ == "__main__":
threadFiles = os.listdir("threads/")
tnr = 0
for fname in threadFiles:
if os.path.isfile("threads/"+fname):
t = detector.Detector(tnr, "./config.conf")
t.start("threads/"+fname)
threads.append(t)
tnr += 1
active = True
signal.signal(signal.SIGINT, exit_handler)
while active:
active = False
for thread in threads:
if thread.active:
active = True
print("Close meteorcam")
sys.exit(0)