Python?OpenCV識別行人入口進(jìn)出人數(shù)統(tǒng)計(jì)
前言
這篇博客針對《Python OpenCV識別行人入口進(jìn)出人數(shù)統(tǒng)計(jì)》編寫代碼,功能包括了入口行人識別,人數(shù)統(tǒng)計(jì)。代碼整潔,規(guī)則,易讀。應(yīng)用推薦首選。
一、所需工具軟件
1. Python3.6以上
2. Pycharm代碼編輯器
3. OpenCV, Numpy庫
二、使用步驟
1.引入庫
代碼如下(示例):
#導(dǎo)入需要的包 import numpy as np import cv2 import Person import time
2.識別特征圖像
代碼如下(示例):
video=cv2.VideoCapture("counting_test.avi")
#輸出視頻
fourcc = cv2.VideoWriter_fourcc(*'XVID')#輸出視頻制編碼
out = cv2.VideoWriter('output.avi',fourcc, 20.0, (640,480))
w = video.get(3)
h = video.get(4)
print("視頻的原寬度為:")
print(int(w))
print("視頻的原高度為:")
area = h*w
print(int(h))
areaTHreshold = area/500
print('Area Threshold', areaTHreshold)
#計(jì)算畫線的位置
line_up = int(1*(h/4))
line_down = int(2.7*(h/4))
up_limit = int(.5*(h/4))
down_limit = int(3.2*(h/4))
print ("Red line y:",str(line_down))
print ("Green line y:", str(line_up))
pt5 = [0, up_limit]
pt6 = [w, up_limit]
pts_L3 = np.array([pt5,pt6], np.int32)
pts_L3 = pts_L3.reshape((-1,1,2))
pt7 = [0, down_limit]
pt8 = [w, down_limit]
pts_L4 = np.array([pt7,pt8], np.int32)
pts_L4 = pts_L4.reshape((-1,1,2))
#背景剔除
# fgbg = cv2.createBackgroundSubtractorMOG2(detectShadows = True)
fgbg = cv2.createBackgroundSubtractorKNN()
#用于后面形態(tài)學(xué)處理的核
kernel = np.ones((3,3),np.uint8)
kerne2 = np.ones((5,5),np.uint8)
kerne3 = np.ones((11,11),np.uint8)
while(video.isOpened()):
ret,frame=video.read()
if frame is None:
break
#應(yīng)用背景剔除
gray = cv2.GaussianBlur(frame, (31, 31), 0)
#cv2.imshow('GaussianBlur', frame)
#cv2.imshow('GaussianBlur', gray)
fgmask = fgbg.apply(gray)
fgmask2 = fgbg.apply(gray)
try:
#***************************************************************
#二值化
ret,imBin= cv2.threshold(fgmask,200,255,cv2.THRESH_BINARY)
ret,imBin2 = cv2.threshold(fgmask2,200,255,cv2.THRESH_BINARY)
#cv2.imshow('imBin', imBin2)
#開操作(腐蝕->膨脹)消除噪聲
mask = cv2.morphologyEx(imBin, cv2.MORPH_OPEN, kerne3)
mask2 = cv2.morphologyEx(imBin2, cv2.MORPH_OPEN, kerne3)
#閉操作(膨脹->腐蝕)將區(qū)域連接起來
mask = cv2.morphologyEx(mask , cv2.MORPH_CLOSE, kerne3)
mask2 = cv2.morphologyEx(mask2, cv2.MORPH_CLOSE, kerne3)
#cv2.imshow('closing_mask', mask2)
#*************************************************************
except:
print('EOF')
print ('IN:',cnt_in+count_in)
print ('OUT:',cnt_in+count_in)
break
#找到邊界
_mask2,contours0, hierarchy = cv2.findContours(mask2, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
for cnt in contours0:
rect = cv2.boundingRect(cnt)#矩形邊框
area=cv2.contourArea(cnt)#每個矩形框的面積
if area>areaTHreshold:
#************************************************
#moments里包含了許多有用的信息
M=cv2.moments(cnt)
cx=int(M['m10']/M['m00'])#計(jì)算重心
cy=int(M['m01']/M['m00'])
x, y, w, h = cv2.boundingRect(cnt)#x,y為矩形框左上方點(diǎn)的坐標(biāo),w為寬,h為高
new=True
if cy in range(up_limit,down_limit):
for i in persons:
if abs(cx-i.getX())<=w and abs(cy-i.getY())<=h:
new=False
i.updateCoords(cx,cy)
if i.going_UP(line_down,line_up)==True:
# cv2.circle(frame, (cx, cy), 5, line_up_color, -1)
# img = cv2.rectangle(frame, (x, y), (x + w, y + h), line_up_color, 2)
if w>80:
count_in=w/40
print("In:執(zhí)行了/60")
time.strftime("%c"))
elif i.going_DOWN(line_down,line_up)==True:
# cv2.circle(frame, (cx, cy), 5, (0, 0, 255), -1)
# img = cv2.rectangle(frame, (x, y), (x + w, y + h), line_down_color, 2)
time.strftime("%c"))
break
#狀態(tài)為1表明
if i.getState() == '1':
if i.getDir() == 'down' and i.getY() > down_limit:
i.setDone()
elif i.getDir() == 'up' and i.getY() < up_limit:
i.setDone()
if i.timedOut():
# 已經(jīng)記過數(shù)且超出邊界將其移出persons隊(duì)列
index = persons.index(i)
persons.pop(index)
del i # 清楚內(nèi)存中的第i個人
if new == True:
p = Person.MyPerson(pid, cx, cy, max_p_age)
persons.append(p)
pid += 1
print("進(jìn)入的總?cè)藬?shù)為:")
print(cnt_in)
print("出去的總?cè)藬?shù)為:")
print(cnt_out)
video.release();
cv2.destroyAllWindows()3.運(yùn)行結(jié)果如下:

到此這篇關(guān)于Python OpenCV識別行人入口進(jìn)出人數(shù)統(tǒng)計(jì)的文章就介紹到這了,更多相關(guān)OpenCV人數(shù)統(tǒng)計(jì)內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
python實(shí)現(xiàn)下載pop3郵件保存到本地
這篇文章主要為大家詳細(xì)介紹了python實(shí)現(xiàn)下載pop3郵件保存到本地的代碼,具有一定的參考價值,感興趣的小伙伴們可以參考一下2018-06-06
python?函數(shù)定位參數(shù)+關(guān)鍵字參數(shù)+inspect模塊
這篇文章主要介紹了python?函數(shù)定位參數(shù)+關(guān)鍵字參數(shù)+inspect模塊,文章圍繞主題展開詳細(xì)的相關(guān)資料,具有一定的參考價值,需要的小伙伴可以參考一下2022-05-05
Python實(shí)現(xiàn)將json文件生成C語言的結(jié)構(gòu)體的腳本分享

