获取检测到的面部数量[关闭]

问题描述 投票:-4回答:1

我写了一个人脸检测代码,但我的目标是获取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()
python opencv haar-classifier
1个回答
1
投票

由于面部总数是len(面),因此您可以自己计算每个面数。你可以使用face_count来做到这一点。

face_count = 0 # edit it to 1 if you want the number to start with 1
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(face_count), (ex, ey), cv2.FONT_HERSHEY_SIMPLEX, 1, (255,255,0), 2)
    print(faces)
    print('------------')
    print(faces.shape)
    face_count += 1
© www.soinside.com 2019 - 2024. All rights reserved.