朋友们,我需要实现一个代码,从给定的图像中模糊面孔(我不是开发人员,所以这对我来说真的很难)。我发现我可以使用 OpenCV 和 cvlib 来做到这一点,并找到了一个示例代码(来自 cvlib 的存储库),它完成了部分工作。
我知道我需要获取子面并将面部模糊应用于它们,我可以做到,但现在我不知道如何将模糊的面部添加到原始图像中。有人可以帮我吗?
import cvlib as cv
import sys
from cv2 import cv2
import os
# read input image
image = cv2.imread('path')
# apply face detection
faces, confidences = cv.detect_face(image)
print(faces)
print(confidences)
# loop through detected faces
for face,conf in zip(faces,confidences):
(startX,startY) = face[0],face[1]
(endX,endY) = face[2],face[3]
subFace = image[startY:endY,startX:endX]
subFace = cv2.GaussianBlur(subFace,(23, 23), 30)
# display output
# press any key to close window
cv2.imshow("face_detection", image)
cv2.waitKey()
cv2.imshow("face_detection", subFace)
# release resources
cv2.destroyAllWindows()