AWS Doc SDK Examples
翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。
または 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 詳細については、 リファレンス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
」の「」を参照してください。
-
DisassociateFaces
IndexFaces