当我尝试使用便携式计算机或计算机网络摄像头检测面部时,它可以正常工作,但是当我尝试使用IP摄像头检测时,似乎需要花费大量时间来检测一帧。有什么解决办法吗,因为我也尝试过YOLO。比opencv haar级联要花更多的时间
我有一个简单的代码可以检测人脸和作物,而不是部分帧。
cap = cv2.VideoCapture("web_Cam_IP")
cropScal = 25
while(True):
# Capture frame-by-frame
for i in range(10): #this loop skip 10 frames if I don't skip frame it looks like it stack there
ret, frame = cap.read()
frame = cv2.resize(frame, (0, 0), fx=0.70, fy=0.70)
# Our operations on the frame come here
gray = cv2.cvtColor(frame, cv2.COLOR_RGB2GRAY)
faces = faceCascade.detectMultiScale(gray, scaleFactor=1.02, minNeighbors=5, minSize=(30, 30))
for (x, y, w, h) in faces:
if len(faces) > 0 :
try:
img = gray[y-cropScal:y+h+cropScal, x-cropScal:x+w+cropScal]
img = cv2.resize(img,(200,200))
img = Image.fromarray(img)
img.save('images/'+datetime.now().strftime("%d_%m_%Y_%I_%M_%S_%p")+'.png')
except Exception as e:
pass
cv2.rectangle(gray, (x-cropScal, y-cropScal), (x+w+cropScal, y+h+cropScal), (0, 255, 0), 2)
cv2.imshow('frame',gray)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# When everything done, release the capture
cap.release()
cv2.destroyAllWindows()
答案 0 :(得分:0)
您只按0.70的比例缩放输入帧,而不是绝对分辨率。您的IP凸轮可能比网络摄像机具有更高的分辨率,因此检测需要更多时间来分析更大的帧。
在人脸检测之前,尝试将帧缩放到一定大小(例如800x600)。