当前位置:   article > 正文

AI换脸技术源码_ai换脸源码

ai换脸源码
import requests
import simplejson
import json
import base64

def find_face(imgpath):
    print("finding")

    http_url = 'https://api-cn.faceplusplus.com/facepp/v3/detect'

    data = {"api_key": "https://console.faceplusplus.com.cn申请'',
            "api_secret": 'https://console.faceplusplus.com.cn申请', "image_url": imgpath, "return_landmark": 1}

    files = {"image_file": open(imgpath, "rb")}

    response = requests.post(http_url, data=data, files=files)

    req_con = response.content.decode('utf-8')

    req_dict = json.JSONDecoder().decode(req_con)

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

闽ICP备14008679号