gpt4 book ai didi

python - 如何保存OpenCV检测到的面部

转载 作者:行者123 更新时间:2023-12-02 17:29:01 26 4
gpt4 key购买 nike

我有检测到人脸的代码。我要做的就是将检测到的脸部另存为jpg

这是我的程序的代码:

import numpy as np
import cv2

detector= cv2.CascadeClassifier('haarcascade_fullbody.xml')
cap = cv2.VideoCapture(0)

while(True):
ret, img = cap.read()
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
faces = detector.detectMultiScale(gray, 1.3, 5)
for (x,y,w,h) in faces:
cv2.rectangle(img,(x,y),(x+w,y+h),(255,0,0),2)

cv2.imshow('frame',img)
if cv2.waitKey(1) & 0xFF == ord('q'):
break

cap.release()
cv2.destroyAllWindows()

如何保存检测到的脸部?请帮忙!

最佳答案

detectMultiScale方法返回一个列表,其中每个元素包含检测到的每个面部的坐标以及宽度和高度。

因此,您可以使用cv2.imwritearray slicing:

count = 0
for (x,y,w,h) in faces:
face = img[y:y+h, x:x+w] #slice the face from the image
cv2.imwrite(str(count)+'.jpg', face) #save the image
count+=1
cv2.rectangle(img,(x,y),(x+w,y+h),(255,0,0),2)

关于python - 如何保存OpenCV检测到的面部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57055694/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com