opencv(九)--移动物体检测

import argparse
import cv2
import imutils
import time 
import datetime

ap = argparse.ArgumentParser()
ap.add_argument("-v","--video",help = "path to the video file")
ap.add_argument("-a","--min-area", type = int,default = 600,help = "minimun area size")
args = vars(ap.parse_args())

if args.get("video", None) is None:   #1.get the video from camera
	camera = cv2.VideoCapture(0)
	time.sleep(0.25)
else:
	camera = cv2.VideoCapture(args["video"])   #2.read a video file
	
firstFrame = None    #initialize the first frame

while True:
	(grabbed, frame) = camera.read()
	text = "Unoccupied"
	if not grabbed:
		break

	frame = imutils.resize(frame, width=500)  #the show screen
	gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
	gray = cv2.GaussianBlur(gray, (21, 21), 0)

	if firstFrame is None:
		firstFrame = gray
		continue
	
	frameDelta = cv2.absdiff(firstFrame, gray)     #the difference between firstframe and present frame
	thresh = cv2.threshold(frameDelta, 30, 255, 0)[1]    
	thresh = cv2.dilate(thresh, None, iterations=4)  
	(_, contours, _) = cv2.findContours(thresh.copy(), cv2.RETR_EXTERNAL,cv2.CHAIN_APPROX_SIMPLE)
	for c in contours:
		if cv2.contourArea(c) < args["min_area"]:
			continue
		(x, y, w, h) = cv2.boundingRect(c)
		cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 2)
		text = "Occupied"
	#in the present frame,write down the text and time
	cv2.putText(frame, "Room Status: {}".format(text), (10, 20),cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 0, 255), 2)
	cv2.putText(frame,datetime.datetime.now().strftime("%A %d %B %Y %I:%M:%S%p"),(10,frame.shape[0] - 10),cv2.FONT_HERSHEY_SIMPLEX,0.35,(0,0,255),2)
	
	cv2.imshow("Security Feed",frame)
	cv2.imshow("Thresh",thresh)
	cv2.imshow("Frame Delta",frameDelta)
	key = cv2.waitKey(1)
	
	if key == ord("q"):
		break
camera.release()
cv2.destroyAllWindows()



效果不是很好,要调一下参数
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值