当前位置:   article > 正文

基于百度云人脸融合API的python实现视频人像换脸_视频人脸融合api

视频人脸融合api

import os
import cv2
import re
import base64
import requests 

AK = 0        #输入你的AK
SK = 0        #输入你的SK
inPath = 0      #输入你分裂视频的图片路劲
aimPath = 0     #输入你想换脸的图像的路劲
outPath = 0     #输入你换完脸图像的保存路径
videoPath = 0   #输入原视频路径
savePath = 0    #输入你想保存结果的路劲和文件名

sum = 1
def resquest(AK,SK):
    host = 'https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id='+AK+'&client_secret='+SK
    response = requests.get(host)
    if response:
        return response.json()['result']

def splitmv(videoPath, svPath):
    cap = cv2.VideoCapture(videoPath)
    numFrame = 0
    while True:
        if cap.grab():
            flag, frame = cap.retrieve()
            if not flag:
                continue
            els

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/123644
推荐阅读
相关标签
  

闽ICP备14008679号