Python opencv添加圣诞帽,不需要微信官方

圣诞帽,命名为hat.png,注意是png文件
Python opencv添加圣诞帽,不需要微信官方_第1张图片
person
Python opencv添加圣诞帽,不需要微信官方_第2张图片

code:

import cv2
from PIL import Image
personPath = './xyjy.jpg'
hatPath = './hat.png'

personImg = cv2.imread(personPath)
face_haar = cv2.CascadeClassifier("./haarcascades/haarcascade_frontalface_default.xml")
faces = face_haar.detectMultiScale(personImg, 1.3, 3)

personImg = Image.open(personPath)
personImg = personImg.convert('RGBA')

hatImg = Image.open(hatPath)
hatImg = hatImg.convert('RGBA')

for face_x,face_y,face_w,face_h in faces:
    face_x -= face_w/2
    face_y += face_h/2
    face_w *= 2
    face_h *= 2
    hatImg = hatImg.resize((face_w, face_h))
    bg = (face_x , face_y - face_h + 100, face_x + face_w, face_y + 100 )
    personImg.paste(hatImg, bg, mask = hatImg)

personImg.save('addHat.png')

结果:
Python opencv添加圣诞帽,不需要微信官方_第3张图片

Python opencv添加圣诞帽,不需要微信官方_第4张图片

你可能感兴趣的:(python,人脸识别,opencv)