예제 #1
0
# Fall detector main
# Kim Salmi, kim.salmi(at)iki(dot)fi
# http://tunn.us/arduino/falldetector.php
# License: GPLv3

import video
import time
import sys

video = video.Video(0)
time.sleep(1.0) # let camera autofocus + autosaturation settle
video.nextFrame()
video.testBackgroundFrame()

while 1:
	video.nextFrame()
	video.testBackgroundFrame()
	video.updateBackground()
	video.compare()
	video.showFrame()
	video.testSettings()
	if video.testDestroy():
		sys.exit()
예제 #2
0
파일: main.py 프로젝트: steve7an/MTECHKE30
# Fall detection main

import video
import time
import sys
import numpy as np
import cv2
import time
import settings

video = video.Video()
time.sleep(1.0)  #let camera autofocus + autosaturation settle
video.nextFrame()
video.testBackgroundFrame()

settings = settings.Settings()
debug = settings.debug

while 1:
    #get next frame of video
    video.nextFrame()
    video.testBackgroundFrame()  #press n to delete background?
    video.updateBackground()
    video.compare()
    video.showFrame()
    if debug:
        video.testSettings()

    k = cv2.waitKey(1) & 0xff
    if video.testDestroy():
        if k == 27: