我将比较一些情绪检测应用程序。我想设计一个简单的C#应用程序,使用内置代码或内置库来测试大量图像的情感。我们可以从google cloud api下载用于情绪检测的c#代码吗?
答案 0 :(得分:0)
是的,可以。它有两种解析JSON响应的方法,也可以使用以下本机c#代码的方法。 有关更多详细信息,请访问 https://cloud.google.com/vision/docs/libraries#client-libraries-usage-csharp
using Google.Cloud.Vision.V1;
using System;
namespace GoogleCloudSamples
{
public class QuickStart
{
public static void Main(string[] args)
{
// Instantiates a client
var client = ImageAnnotatorClient.Create();
// Load the image file into memory
var image = Image.FromFile("wakeupcat.jpg");
// Performs label detection on the image file
var response = client.DetectLabels(image);
foreach (var annotation in response)
{
if (annotation.Description != null)
Console.WriteLine(annotation.Description);
}
}
}
}