Unity 百度AI实现人像动漫化效果

接口介绍:

运用对抗生成网络技术,结合人脸检测、头发分割、人像分割等技术,为用户量身定制千人千面的二次元动漫形象,并支持通过参数设置,生成二次元动漫人像。

创建应用:     

在产品服务中搜索图像增强与特效,创建应用,获取AppID、APIKey、SecretKey信息:

Unity 百度AI实现人像动漫化效果_第1张图片

Unity 百度AI实现人像动漫化效果_第2张图片

查阅官方文档,以下是人像动漫画接口返回数据参数详情:

Unity 百度AI实现人像动漫化效果_第3张图片

定义数据结构:

using System;
 
/// 
/// 人像动漫化接口响应数据结构
/// 
[Serializable]
public class AnimeResponse
{
    /// 
    /// 唯一的log id,用于问题定位
    /// 
    public int log_id;
    /// 
    /// 处理后图片的Base64编码
    /// 
    public string image;
}

下载C# SDK:

Unity 百度AI实现人像动漫化效果_第4张图片

下载完成后将AipSdk.dll动态库导入到Unity中:

Unity 百度AI实现人像动漫化效果_第5张图片

以下是调用接口时传入的参数详情:

Unity 百度AI实现人像动漫化效果_第6张图片

封装调用函数: 

using System;
using System.Collections.Generic;
using UnityEngine;
 
/// 
/// 人像动漫化
/// 
public class Anime
{
    //以下信息于百度开发者中心控制台创建应用获取
    private const string appID = "";
    private const string apiKey = "";
    private const string secretKey = "";
 
        /// 
    /// 发起人像动漫画请求
    /// 
    /// 图片字节数据
    /// 是否带口罩
    /// 口罩ID 取值范围1-8
    /// 返回的动漫画图片字节数据
    public static byte[] SendRequest(byte[] bytes, bool withMask = false, int maskID = 1)
    {
        var client = new Baidu.Aip.ImageProcess.ImageProcess(apiKey, secretKey);
        try
        {
            var options = new Dictionary
            {
                { "type", withMask ? "anime_mask" : "anime" },
                { "mask_id", Mathf.Clamp(maskID, 1, 8) }
            };
            var response = client.SelfieAnime(bytes, options);
            AnimeResponse animeResponse = JsonUtility.FromJson(response.ToString());
            byte[] buffer = Convert.FromBase64String(animeResponse.image);
            return buffer;
        }
        catch(Exception error)
        {
            Debug.LogError(error);
        }
        return null;
    }
    /// 
    /// 发起人像动漫画请求
    /// 
    /// 图片url地址
    /// 是否带口罩
    /// 口罩ID 取值范围1-8
    /// 返回的动漫画图片字节数据
    public static byte[] SendRequest(string url, bool withMask = false, int maskID = 1)
    {
        var client = new Baidu.Aip.ImageProcess.ImageProcess(apiKey, secretKey);
        try
        {
            var options = new Dictionary
            {
                { "type", withMask ? "anime_mask" : "anime" },
                { "mask_id", Mathf.Clamp(maskID, 1, 8) }
            };
            var response = client.SelfieAnimeUrl(url, options);
            AnimeResponse animeResponse = JsonUtility.FromJson(response.ToString());
            byte[] buffer = Convert.FromBase64String(animeResponse.image);
            return buffer;
        }
        catch (Exception error)
        {
            Debug.LogError(error);
        }
        return null;
    }
}

测试图片:

Unity 百度AI实现人像动漫化效果_第7张图片

using System.IO;
using UnityEngine;
 
public class Example : MonoBehaviour
{
    private void Start()
    {
        //读取图片字节数据 发起请求
        var bytes = Anime.SendRequest(File.ReadAllBytes(Application.dataPath + "/Picture.jpg"));
        //根据返回的字节数据生成图片
        File.WriteAllBytes(Application.dataPath + "/Test.png", bytes);
    }
}

下面是生成的图片:

Unity 百度AI实现人像动漫化效果_第8张图片

到此这篇关于Unity 百度AI实现人像动漫化效果的文章就介绍到这了,更多相关Unity 人像动漫化内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(Unity 百度AI实现人像动漫化效果)