rekognition/

directory
v0.0.0-...-e8b88a3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 22, 2021 License: Apache-2.0

README

AWS SDK for Go V2 code examples for Amazon Rekognition

Purpose

These examples demonstrates how to perform several Amazon Rekognition operations using version 2 of the AWS SDK for Go.

Prerequisites

You must have an AWS account, and have your default credentials and AWS Region configured as described in Configuring the AWS SDK for Go V2 in the AWS SDK for Go V2 Developer Guide.

Running the code

DetectFaces/DetectFaces.go

This example reads the specified image from the bucket, runs facial recognition on the faces in the image, and display attributes of each face, such as position, age, emotion, and gender.

go run DetectFaces.go -b BUCKET -i IMAGE

  • BUCKET is the name of the bucket containing the image.
  • IMAGE is the name of the JPEG, JPG, or PNG image as the fully-qualified path in the bucket. Other formats are not supported.

The unit test accepts similar values in config.json.

DetectLabels/DetectLabels.go

This example performs three tasks:

  1. Saves the image in an Amazon Simple Storage Service (Amazon S3) bucket with an "uploads/" prefix.
  2. Gets any ELIF information from the image and saves in the Amazon DynamoDB (DynamoDB) table.
  3. Detects instances of real-world entities, such as flowers, weddings, and nature, within a JPEG or PNG image, and saves those instances as name/confidence pairs in the DynamoDB table.
  4. Creates a thumbnail version of the image, no larger than 80 pixels by 80 pixels, and saves it in the same bucket with a "thumbs/" prefix and "thumb" suffix.

go run DetectLabels.go -b BUCKET -t TABLE -f IMAGE

  • BUCKET is the name of the bucket where the images are saved.
  • TABLE is the name of the bucket to which the item is copied.
  • IMAGE is the name of the JPG or PNG table.

The unit test accepts similar values in config.json.

Notes
  • We recommend that you grant this code least privilege, or at most the minimum permissions required to perform the task. For more information, see Grant Least Privilege in the AWS Identity and Access Management User Guide.
  • This code has not been tested in all AWS Regions. Some AWS services are available only in specific Regions.
  • Running this code might result in charges to your AWS account.

Running the unit tests

Unit tests should delete any resources they create. However, they might result in charges to your AWS account.

To run a unit test, enter:

go test

You should see something like the following, where PATH is the path to the folder containing the Go files:

PASS
ok      PATH 6.593s

If you want to see any log messages, enter:

go test -v

You should see some additional log messages. The last two lines should be similar to the previous output shown.

Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. SPDX-License-Identifier: Apache-2.0

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL