a AWS SDK 또는 CLIGetCelebrityInfo와 함께 사용 - AWS SDK 코드 예제

AWS Doc SDK ExamplesWord AWS SDK 리포지토리에는 더 많은 GitHub 예제가 있습니다.

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

a AWS SDK 또는 CLIGetCelebrityInfo와 함께 사용

다음 코드 예제는 GetCelebrityInfo의 사용 방법을 보여 줍니다.

.NET
AWS SDK for .NET
참고

더 많은 on 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 세부 정보는 GetCelebrityInfo AWS SDK for .NET 참조의 API를 참조하세요.

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 세부 정보는 AWS CLI 명령 참조GetCelebrityInfo를 참조하세요.