本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。
与 AWS SDK或GetCelebrityInfo
一起使用 CLI
以下代码示例演示如何使用 GetCelebrityInfo
。
- .NET
-
- AWS SDK for .NET
-
注意
还有更多相关信息 GitHub。查找完整示例,学习如何在 AWS 代码示例存储库
中进行设置和运行。 using System; using System.Threading.Tasks; using Amazon.Rekognition; using Amazon.Rekognition.Model; /// <summary> /// Shows how to use Amazon Rekognition to retrieve information about the /// celebrity identified by the supplied celebrity Id. /// </summary> public class CelebrityInfo { public static async Task Main() { string celebId = "nnnnnnnn"; var rekognitionClient = new AmazonRekognitionClient(); var celebrityInfoRequest = new GetCelebrityInfoRequest { Id = celebId, }; Console.WriteLine($"Getting information for celebrity: {celebId}"); var celebrityInfoResponse = await rekognitionClient.GetCelebrityInfoAsync(celebrityInfoRequest); // Display celebrity information. Console.WriteLine($"celebrity name: {celebrityInfoResponse.Name}"); Console.WriteLine("Further information (if available):"); celebrityInfoResponse.Urls.ForEach(url => { Console.WriteLine(url); }); } }
-
有关API详细信息,请参阅 “AWS SDK for .NET API参考 GetCelebrityInfo” 中的。
-
- CLI
-
- AWS CLI
-
获取有关名人的信息
以下
get-celebrity-info
命令显示有关指定名人的信息:id
参数来自先前对recognize-celebrities
的调用。aws rekognition get-celebrity-info --id
nnnnnnn
输出:
{ "Name": "Celeb A", "Urls": [ "www.imdb.com/name/aaaaaaaaa" ] }
有关更多信息,请参阅《Amazon Rekognition 开发人员指南》中的获取有关名人的信息。
-
有关API详细信息,请参阅 “GetCelebrityInfo AWS CLI
命令参考”。
-
有关 AWS SDK开发者指南和代码示例的完整列表,请参阅将 Rekognition 与 AWS SDK。本主题还包括有关入门的信息以及有关先前SDK版本的详细信息。
DisassociateFaces
IndexFaces