-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcamera.py
76 lines (51 loc) · 2.08 KB
/
camera.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import cv2, time, pandas
from datetime import datetime
import threading
first_frame=None
class VideoCamera(object):
def __init__(self):
# Open a camera
self.cap = cv2.VideoCapture(0)
# Initialize video recording environment
self.is_record = False
self.out = None
def __del__(self):
self.cap.release()
def get_frame(self):
global first_frame
while True:
ret, frame = self.cap.read()
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
gray = cv2.GaussianBlur(gray,(21,21),0)
if first_frame is None :
first_frame = gray
continue
delta_frame = cv2.absdiff(first_frame,gray)
thresh_delta = cv2.threshold(delta_frame,30,255,cv2.THRESH_BINARY)[1]
thresh_delta = cv2.dilate(thresh_delta, None, iterations=0)
(cnts,_) = cv2.findContours(thresh_delta.copy(), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
for contour in cnts:
if cv2.contourArea(contour) < 1000:
continue
(x, y, w, h) = cv2.boundingRect(contour)
cv2.rectangle(frame, (x,y), (x+w,y+h), (0, 0, 255), 3)
if ret:
ret, jpeg = cv2.imencode('.jpg', frame)
# Record video
if self.is_record:
if self.out == None:
fourcc = cv2.VideoWriter_fourcc(*'MJPG')
self.out = cv2.VideoWriter('./static/video.avi',fourcc, 20.0, (640,480))
if ret:
self.out.write(frame)
else:
if self.out != None:
self.out.release()
self.out = None
return jpeg.tobytes()
else:
return None
def start_record(self):
self.is_record = True
def stop_record(self):
self.is_record = False