-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetector.py
443 lines (354 loc) · 12.7 KB
/
detector.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
#! /usr/bin/env python
#
# gets images from video/device and detects
# motions
#
import sys
import time
import cv2.cv as cv
import cv2
import imagestack
import thread
import os.path
import ConfigParser
import videocap as vc
import httpserver
class Detector(object):
def __init__(self, threadnr, config):
## text
self._fontsize = 0.5
self._fontcolor = (255, 255, 255)
self._font = cv.InitFont(cv.CV_FONT_HERSHEY_DUPLEX, self._fontsize, self._fontsize, cv.CV_AA)
self._texttl = ""
## motion detection
self._deNoiseLevel = 0
self._darkframe = None
self._mask = None
self._avgLevel = 0.01
self._prevFrames = 10
self._postFrames = 50
self._detectThresh = 20
self._maxVideoGap = 10
## postprocessing
self._drawRect = True
self._minRectArea = 10
self._maxRectArea = 400
self._bRectOffset = 20
self._videoDir = "./capture/2013/08/"
## xxxxx
self._showWindow = True
## video
self._videoInput = None
self._videoSize = (640, 480)
self._fps = 25
self._bin = 1
self._gain = 10
## server
self._runServer = False
self._serverPort = 8080
self._server = None
## thread
self._thread = threadnr
self._run = True
self.active = False
self.loadConfig(config)
######## Load Config file #########
def loadConfig(self, configfile):
self.log("load config " + configfile)
defaults = {
## text
'fontsize' : self._fontsize,
'fontcolor' : self._fontcolor,
'texttl' : str(self._texttl),
## motion detection
'deNoiseLevel' : self._deNoiseLevel,
'darkframe' : self._darkframe,
'mask' : self._mask,
'avgLevel' : self._avgLevel,
'prevFrames' : self._prevFrames,
'postFrames' : self._postFrames,
'detectThresh' : self._detectThresh,
'maxVideoGap' : self._maxVideoGap,
## postprocessing
'drawRect' : str(self._drawRect),
'minRectArea' : self._minRectArea,
'maxRectArea' : self._maxRectArea,
'bRectOffset' : self._bRectOffset,
'videoDir' : str(self._videoDir),
## xxxxx
'showWindow' : str(self._showWindow),
## server
'runServer' : str(self._runServer),
'serverPort' : self._serverPort,
## video
'videoInput' : self._videoInput,
'videoSize' : self._videoSize,
'fps' : self._fps,
'bin' : self._bin,
'gain' : self._gain
}
config = ConfigParser.RawConfigParser(defaults)
config.read( configfile )
## text
self._fontsize = config.getfloat('DEFAULT', 'fontsize')
self._fontcolor = config.get('DEFAULT', 'fontcolor')
self._font = cv.InitFont(cv.CV_FONT_HERSHEY_DUPLEX, self._fontsize, self._fontsize, cv.CV_AA)
self._texttl = config.get('DEFAULT', 'texttl')
## motion detection
self._deNoiseLevel = config.getint('DEFAULT', 'deNoiseLevel')
self._darkframe = config.get('DEFAULT', 'darkframe')
self._mask = config.get('DEFAULT', 'mask')
self._avgLevel = config.getfloat('DEFAULT', 'avgLevel')
self._prevFrames = config.getfloat('DEFAULT', 'prevFrames')
self._postFrames = config.getfloat('DEFAULT', 'postFrames')
self._detectThresh = config.getfloat('DEFAULT', 'detectThresh')
self._maxVideoGap = config.getfloat('DEFAULT', 'maxVideoGap')
## postprocessing
self._drawRect = config.getboolean('DEFAULT', 'drawRect')
self._minRectArea = config.getfloat('DEFAULT', 'minRectArea')
self._maxRectArea = config.getfloat('DEFAULT', 'maxRectArea')
self._bRectOffset = config.getint('DEFAULT', 'bRectOffset')
self._videoDir = config.get('DEFAULT', 'videoDir')
## xxxxx
self._showWindow = config.getboolean('DEFAULT', 'showWindow')
## server
self._runServer = config.getboolean('DEFAULT', 'runServer')
self._serverPort = config.getint('DEFAULT', 'serverPort')
## video
self._videoInput = config.get('DEFAULT', 'videoInput')
self._videoSize = config.get('DEFAULT', 'videoSize')
self._fps = config.getfloat('DEFAULT', 'fps')
self._bin = config.getint('DEFAULT', 'bin')
self._gain = config.getint('DEFAULT', 'gain')
self.log("config loaded")
######## Log ########
def log(self, string):
print("[%s] [%d]: %s" % (self._thread, time.time(), str(string)))
#print("[" + str(self._thread) + "] " + str(string))
######## stop detection
def stop(self):
self._run = False
######## start detection
def start(self, config):
self.loadConfig(config)
if self._videoInput :
self.active = True
thread.start_new_thread(self.detect, ())
else:
self.log("No video input specified!")
######## detect ######
def detect(self):
self.log("Start detection thread")
### open cam ###
cap = vc.VideoCapture(self._videoInput, self).capture
if cap == None:
self.log("Can't open camera!")
self.active = False
return
cap.setFPS(self._fps)
cap.setVideoSize(self._videoSize)
cap.setBin(self._bin)
cap.setGain(self._gain)
### init ###
frame, ts = cap.getFrame()
if not frame:
self.log("Error reading first frame")
self.active = False
return
frameSize = cv.GetSize(frame)
darkframe = None
if self._darkframe:
try:
darkframe = cv.LoadImage(self._darkframe)
if frameSize != cv.GetSize(darkframe):
darkframe = None
self.log("Darkframe has wrong size")
except:
self.log("Darkframe not found")
mask = None
'''
if self._mask:
try:
tmp = cv.LoadImage(self._mask)
mask = cv.CreateImage( frameSize, cv.IPL_DEPTH_8U, 1)
cv.CvtColor( tmp, mask, cv.CV_RGB2GRAY )
if frameSize != cv.GetSize(mask):
raise Exception();
except:
self.log("Mask not found or wrong size")
'''
small, smallSize = self.workingThumb(frame, frameSize)
runAvg = cv.CreateImage( smallSize, cv.IPL_DEPTH_32F, small.channels)
runAvgDisplay = cv.CreateImage(smallSize, small.depth, small.channels)
differenceImg = cv.CreateImage(smallSize, small.depth, small.channels)
grayImg = cv.CreateImage(smallSize, cv.IPL_DEPTH_8U, 1)
historyBuffer = imagestack.Imagestack(self._prevFrames)
capbuf = None
videoGap = self._maxVideoGap
postFrames = 0
frameCount = 1
detect = False
newVideo = True
### testwindow
if self._showWindow:
self.log("Show window")
cv.NamedWindow("Thread " + str(self._thread), 1)
### server
if self._runServer:
self.log("Start Server on port %d" % self._serverPort)
self._server = httpserver.httpserver(self._serverPort)
### capture loop ###
while self._run:
frame, ts = cap.getFrame()
if ts == None:
ts = time.time()
### create small image for detection
small, smallSize = self.workingThumb(frame, frameSize)
videoGap += 1
if small:
frameCount += 1
if 1/float(frameCount) < self._avgLevel and not detect:
self.log("start detection")
detect = True
### substract darkframe
if darkframe:
cv.Sub( frame, darkframe, frame )
if self._deNoiseLevel > 0:
cv.Smooth( small, small, cv.CV_MEDIAN, self._deNoiseLevel)
cv.RunningAvg( small, runAvg, self._avgLevel, mask )
cv.ConvertScale( runAvg, runAvgDisplay, 1.0, 0.0 )
cv.AbsDiff( small, runAvgDisplay, differenceImg )
if differenceImg.depth == grayImg.depth:
grayImg = differenceImg
else:
cv.CvtColor( differenceImg, grayImg, cv.CV_RGB2GRAY )
cv.Threshold( grayImg, grayImg, self._detectThresh, 255, cv.CV_THRESH_BINARY )
contour = cv.FindContours( grayImg, cv.CreateMemStorage(0), cv.CV_RETR_EXTERNAL, cv.CV_CHAIN_APPROX_SIMPLE)
## draw bounding rect
while contour:
bounding_rect = cv.BoundingRect( list(contour) )
area = bounding_rect[2]*bounding_rect[3]
if area > self._minRectArea and area < self._maxRectArea and detect:
videoGap = 0
#print(str(area))
self.log("motion detected...")
if self._drawRect:
self.drawBoundingRect(frame, bounding_rect, smallSize = smallSize)
contour = contour.h_next()
## add text notations
ms = "%04d" % int( (ts-int(ts)) * 10000 )
t = time.strftime("%Y-%m-%d %H:%M:%S." + ms + " UTC", time.gmtime(ts))
frame = self.addText(frame, self._texttl, t)
## save / show frame
if videoGap < self._maxVideoGap:
if newVideo:
self.log("Found motion, start capturing")
capbuf = []
newVideo = False
directory = os.path.join(self._videoDir,
"%d/%02d/%s" % (time.gmtime(ts).tm_year, time.gmtime(ts).tm_mon, t))
if not self.isWriteable(directory):
self._log(directory + "is not writeable!")
self._run = False
continue
capbuf.extend(historyBuffer.getImages())
capbuf.append({'img' : frame, 'time' : t})
else:
if postFrames < self._postFrames and not newVideo:
capbuf.append({'img' : frame, 'time' : t})
postFrames += 1
elif not newVideo:
self.log("Stop capturing")
### write images to hdd in new thread ###
thread.start_new(self.saveVideo, (directory, capbuf))
capbuf = None
postFrames = 0
newVideo = True
######## Add Frame to history buffer ########
historyBuffer.add(cv.CloneImage( frame ), t)
######## Window ########
if self._showWindow:
cv.ShowImage("Thread " + str(self._thread), frame)
cv.ShowImage("Thread %d avg" % self._thread, runAvgDisplay)
cv.ShowImage("Thread %d diff" % self._thread, differenceImg)
cv.WaitKey(1)
######## Update Server ########
if self._server:
self._server.updateImage(cv.CloneImage( frame ))
self.log("Proc: " + str(time.time() - ts))
else:
self.log("no more frames (" + str(frameCount) +" frames)")
break
self.log("Close camera")
cap.close()
if self._server:
self.log("Close server")
self._server.shutdown()
self.log("end detection thread " + str(self._thread))
self.active = False
######### test directory permission ##########
def isWriteable(self, dirname):
if not os.path.exists(dirname):
self.log(dirname + " does not exist...creating")
os.makedirs(dirname)
return True
if not os.access(dirname, os.W_OK):
self.log("no permission to write at " + dirname)
return False
return True
######### draw bounding rect ##########
def drawBoundingRect(self, frame, b_rect, smallSize = None):
bounding_rect = [0,0,0,0]
if smallSize != None:
size = cv.GetSize(frame)
scale = size[0] / float(smallSize[0])
bounding_rect[0] = int(b_rect[0] * scale)
bounding_rect[1] = int(b_rect[1] * scale)
bounding_rect[2] = int(b_rect[2] * scale)
bounding_rect[3] = int(b_rect[3] * scale)
l = 10
c = cv.CV_RGB(200,120,120)
point1 = ( bounding_rect[0] - self._bRectOffset, bounding_rect[1] - self._bRectOffset )
point2 = ( bounding_rect[0] - self._bRectOffset, bounding_rect[1] + bounding_rect[3] + self._bRectOffset )
point3 = ( bounding_rect[0] + bounding_rect[2] + self._bRectOffset, bounding_rect[1] - self._bRectOffset )
point4 = ( bounding_rect[0] + bounding_rect[2] + self._bRectOffset, bounding_rect[1] + bounding_rect[3] + self._bRectOffset)
cv.Line(frame, point1, (point1[0] + l, point1[1]) , c)
cv.Line(frame, point1, (point1[0], point1[1] + l) , c)
cv.Line(frame, point2, (point2[0] + l, point2[1]) , c)
cv.Line(frame, point2, (point2[0], point2[1] - l) , c)
cv.Line(frame, point3, (point3[0] - l, point3[1]) , c)
cv.Line(frame, point3, (point3[0], point3[1] + l) , c)
cv.Line(frame, point4, (point4[0] - l, point4[1]) , c)
cv.Line(frame, point4, (point4[0], point4[1] - l) , c)
#cv.DrawContours(frame, contour, cv.CV_RGB(255,0,0), cv.CV_RGB(0,255,0), 0, 1, 0, (0,0) )
#cv.Rectangle( frame, point1, point2, cv.CV_RGB(120,120,120), 1)
######### Add text notations to frame ##########
def addText(self, frame, textTop, textBottom):
s = cv.GetSize(frame)
offset = 8
## add space for text notations
textSize = cv.GetTextSize(textTop, self._font)
textframe = cv.CreateImage( (s[0], s[1] + 4*textSize[1] + 2*offset), frame.depth, frame.channels)
cv.Set(textframe, 0)
cv.SetImageROI(textframe, (0, 2*textSize[1] + offset, s[0], s[1]))
cv.Copy(frame, textframe)
cv.ResetImageROI(textframe)
## write text
cv.PutText(textframe, textTop, (5, 2*textSize[1] + offset/2), self._font, self._fontcolor)
cv.PutText(textframe, textBottom, (5, int(s[1] + 4*textSize[1] + 1.5 * offset)), self._font, self._fontcolor)
return textframe
######### creates resized image for detection ##########
def workingThumb(self, frame, frameSize):
if frameSize[0] <= 640 and frameSize[1] <= 480:
small = cv.CloneImage(frame)
else:
small = cv.CreateImage( ( 640, int((640/float(frameSize[0])) * frameSize[1]) ), frame.depth, frame.channels)
smallSize = cv.GetSize(small)
cv.Resize(frame, small)
return small, smallSize
######### Writes buffer to hdd ##########
def saveVideo(self, directory, videoBuffer):
self.log("Write captured images to %s" % dir)
for img in videoBuffer:
cv.SaveImage(os.path.join(directory, "%s.png" % (img['time']) ), img['img'])
self.log("%d Images written to %s" % (len(videoBuffer), directory))