亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

梁平县| 班玛县| 迁西县| 江陵县| 扶风县| 琼海市| 辽宁省| 仁怀市| 赣榆县| 子洲县| 荣成市| 延边| 南岸区| 丰镇市| 陕西省| 龙游县| 镇原县| 黄浦区| 陆河县| 宜良县| 西安市| 景洪市| 麦盖提县| 平谷区| 全南县| 天长市| 上虞市| 崇仁县| 招远市| 密云县| 绥德县| 万载县| 泾源县| 新宾| 沾化县| 门头沟区| 红河县| 克山县| 佛坪县| 行唐县| 海阳市|