91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Unity如何接入AI實現果蔬識別

發布時間:2022-02-11 09:11:34 來源:億速云 閱讀:153 作者:iii 欄目:開發技術

這篇“Unity如何接入AI實現果蔬識別”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Unity如何接入AI實現果蔬識別”文章吧。

接口介紹:

識別近千種水果和蔬菜的名稱,適用于識別只含有一種果蔬的圖片,可自定義返回識別結果數,適用于果蔬介紹相關的美食類APP中。

創建應用:     

在產品服務中搜索圖像識別,創建應用,獲取AppID、APIKey、SecretKey信息:

Unity如何接入AI實現果蔬識別

Unity如何接入AI實現果蔬識別

查閱官方文檔,以下是果蔬識別接口返回數據參數詳情:

Unity如何接入AI實現果蔬識別

定義數據結構:

using System;
 
/// <summary>
/// 果蔬識別
/// </summary>
[Serializable]
public class IngredientRecognition
{
    /// <summary>
    /// 唯一的log id,用于問題定位
    /// </summary>
    public float log_id;
    /// <summary>
    /// 返回結果數目,及result數組中的元素個數
    /// </summary>
    public int result_num;
    /// <summary>
    /// 識別結果數組
    /// </summary>
    public IngredientRecognitionResult[] result;
}
 
/// <summary>
/// 果蔬識別結果
/// </summary>
[Serializable]
public class IngredientRecognitionResult
{
    /// <summary>
    /// 食材名稱
    /// </summary>
    public string name;
    /// <summary>
    /// 置信度
    /// </summary>
    public float score;
}

下載C# SDK:

Unity如何接入AI實現果蔬識別

 下載完成后將AipSdk.dll動態庫導入到Unity中:

Unity如何接入AI實現果蔬識別

以下是調用接口時傳入的參數詳情:

Unity如何接入AI實現果蔬識別

在下載的SDK中并未發現通過url調用的重載函數,大概是官方文檔未更新:

Unity如何接入AI實現果蔬識別

封裝調用函數: 

using System;
using System.Collections.Generic;
using UnityEngine;
 
/// <summary>
/// 圖像識別
/// </summary>
public class ImageRecognition 
{
    //以下信息于百度開發者中心控制臺創建應用獲取
    private const string appID = "";
    private const string apiKey = "";
    private const string secretKey = "";
 
    /// <summary>
    /// 果蔬識別
    /// </summary>
    /// <param name="bytes">圖片字節數據</param>
    /// <param name="topNum">返回預測得分top結果數,如果為空或小于等于0默認為5;如果大于20默認20</param>
    /// <returns></returns>
    public static IngredientRecognition Ingredient(byte[] bytes, int topNum = 5)
    {
        var client = new Baidu.Aip.ImageClassify.ImageClassify(apiKey, secretKey);
        try
        {
            var options = new Dictionary<string, object>
            {
                { "top_num", topNum },
            };
            var response = client.Ingredient(bytes, options);
            IngredientRecognition ingredientRecognition = JsonConvert.DeserializeObject<IngredientRecognition>(response.ToString());
            return ingredientRecognition;
        }
        catch (Exception error)
        {
            Debug.LogError(error);
        }
        return null;
    }
}

測試圖片:

Unity如何接入AI實現果蔬識別

using System.IO;
using UnityEngine;
 
public class Example : MonoBehaviour
{
    private void Start()
    {
        ImageRecognition.Ingredient(File.ReadAllBytes(Application.dataPath + "/Picture.jpg"));
    }
}

Unity如何接入AI實現果蔬識別

以上就是關于“Unity如何接入AI實現果蔬識別”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

会宁县| 达州市| 安吉县| 万山特区| 德惠市| 浦江县| 类乌齐县| 辽源市| 宁夏| 吉木萨尔县| 阿拉善盟| 琼中| 荣成市| 龙南县| 邯郸县| 江津市| 阿城市| 共和县| 长阳| 荆州市| 平利县| 扶沟县| 榆社县| 桐乡市| 克东县| 成武县| 新蔡县| 六安市| 锦州市| 清徐县| 昭苏县| 伽师县| 京山县| 伊金霍洛旗| 离岛区| 县级市| 株洲县| 巴彦淖尔市| 彩票| 灵宝市| 曲周县|