如何在带有圆形边框的opencv中模糊面部-Python?

问题描述 投票:1回答:3

我像这样在OpenCV中模糊了脸:

“

我使用此代码:

face = cv2.medianBlur(face, 100) 
img[top:bottom,left:right] = face

但是我想像这样使脸部边界变圆(不需要是完美的)

“输出图像”

python python-3.x opencv cv2 opencv-python
3个回答
0
投票

您可以模糊整个图像,然后使用所需的任何蒙版将结果复制到源。


0
投票
import cv2
import matplotlib.pyplot as plt
import numpy as np

img = cv2.imread('image.jpg')
h, w, c = img.shape

plt.imshow(img)
plt.show()

c_mask = np.zeros((h,w), np.uint8)
cv2.circle(c_mask,(w//2,h//2),100,1,thickness=-1)

mask = cv2.bitwise_and(img, img, mask=c_mask)

plt.imshow(mask)
plt.show()

img_mask = img - mask

plt.imshow(img_mask)
plt.show()

blur = cv2.blur(img,(17, 17))


plt.imshow(blur)
plt.show()

mask2 = cv2.bitwise_and(blur, blur, mask=c_mask)

plt.imshow(mask2)
plt.show()

final_img = img_mask + mask2

print(np.max(final_img))

plt.imshow(final_img)
plt.show()

enter image description here


0
投票

首先,您需要创建一个遮罩图像。为此,您在黑色图像上绘制一个白色圆圈。其次,您需要模糊整个图像。第三,仅当蒙版> 0时,才将模糊的内容复制到原始图像。

p1 = (65, 65)
w, h = 100, 100
p2 = (p1[0] + w, p1[1] + h)


circle_center = ((p1[0] + p2[0])// 2, (p1[1] + p2[1]) // 2)
circle_radius = int(math.sqrt(w * w + h * h) // 2)
mask_img = np.zeros(img.shape, dtype='uint8')
cv2.circle(mask_img, circle_center, circle_radius, (255, 255, 255), -1)

img_all_blurred = cv2.medianBlur(img, 99)
img_face_blurred = np.where(mask_img > 0, img_all_blurred, img)

输出:enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.