【发布时间】:2019-03-28 10:25:08
【问题描述】:
我编写了一个人脸检测代码,但我的目标是获取 haar 级联检测到的人脸数量并打印每张脸上的人脸数量。我使用 face.shape 来获取人脸的形状,它给出了人脸的数量和坐标。打印 face.shape 的第一个参数给出总面数。关键是获取每个面的数量。就像 1、2、3 写在不同的脸上。我需要一些关于那个的算法。谢谢。
不要给我的帖子 - 来谈谈哪里出了问题,这样我就可以改进它。
cap = cv2.VideoCapture(0) # Set the camera to use
while True:
ret, frame = cap.read() # For image as an input -> frame = cv2.imread(r'C:\Users\ASUS\Desktop\Novumare Technologies\crowded.mp4')
if ret is True:
#start_time = time.time()
frame = cv2.resize(frame, (640, 360)) # Downscale to improve frame rate
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) # Haar-cascade classifier needs a grayscale image
else:
break
# Capturing and writing on detected bodies
bodies = body_cascade.detectMultiScale(gray, 1.2, 5)
for(x, y, w, h) in bodies:
cv2.rectangle(frame, (x, y), (x+w, y+h), (255, 0, 0), 2)
cv2.putText(frame, 'Human', (x, y), cv2.FONT_HERSHEY_SIMPLEX, 1, (0,255,255), 2)
# Capturing and writing on detected faces
faces = face_cascade.detectMultiScale(gray)
for(ex, ey, ew, eh) in faces:
cv2.rectangle(frame, (ex, ey), (ex+ew, ey+eh), (0, 0, 255), 2)
cv2.putText(frame, 'Face #' + str(faces.shape[0]), (ex, ey), cv2.FONT_HERSHEY_SIMPLEX, 1, (255,255,0), 2)
print(faces)
print('------------')
print(faces.shape)
# Open here when you save the output -> out.write(frame)
#end_time = time.time()
#print("Elapsed time: ", end_time-start_time)
cv2.putText(frame, "Number of faces detected: " + str(faces.shape[0]),
(0,frame.shape[0] -10), cv2.FONT_HERSHEY_TRIPLEX, 0.5, (0,0,0), 1)
cv2.imshow('frame', frame)
if cv2.waitKey(1) & 0xFF == ord('q'): # Exit condition
break
# Release everything if job is finished
cap.release()
# Open here when you save the output -> out.release()
cv2.destroyAllWindows()
【问题讨论】:
-
欢迎来到stackoverflow!请使用tour,阅读how to ask a question 并提供minimal, complete and verifiable example 来重现您的问题。
标签: python opencv haar-classifier