本文将介绍如何利用Unity接入百度AI从而实现果蔬识别,可以做到识别近千种水果和蔬菜的名称,可自定义返回识别结果数。感兴趣的小伙伴可以了解一下
接口介绍:
识别近千种水果和蔬菜的名称,适用于识别只含有一种果蔬的图片,可自定义返回识别结果数,适用于果蔬介绍相关的美食类APP中。
创建应用:
在产品服务中搜索图像识别,创建应用,获取AppID、APIKey、SecretKey信息:
查阅官方文档,以下是果蔬识别接口返回数据参数详情:
定义数据结构:
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:
下载完成后将AipSdk.dll动态库导入到Unity中:
以下是调用接口时传入的参数详情:
在下载的SDK中并未发现通过url调用的重载函数,大概是官方文档未更新:
封装调用函数:
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;
}
}
测试图片:
using System.IO;
using UnityEngine;
public class Example : MonoBehaviour
{
private void Start()
{
ImageRecognition.Ingredient(File.ReadAllBytes(Application.dataPath + "/Picture.jpg"));
}
}
以上就是Unity接入百度AI实现果蔬识别的详细内容,更多关于Unity果蔬识别的资料请关注得得之家其它相关文章!
织梦狗教程
本文标题为:Unity接入百度AI实现果蔬识别


基础教程推荐
猜你喜欢
- C#调用摄像头实现拍照功能的示例代码 2023-03-09
- C#通过标签软件Bartender的ZPL命令打印条码 2023-05-16
- C#获取指定目录下某种格式文件集并备份到指定文件夹 2023-05-30
- C#中的Linq to JSON操作详解 2023-06-08
- Unity shader实现高斯模糊效果 2023-01-16
- Unity 如何获取鼠标停留位置下的物体 2023-04-10
- C# 解析XML和反序列化的示例 2023-04-14
- 实例详解C#实现http不同方法的请求 2022-12-26
- c# – USING块在网站与Windows窗体中的行为不同 2023-09-20
- C#中 Json 序列化去掉null值的方法 2022-11-18