public class RecognizeCelebritiesRequest extends AmazonWebServiceRequest implements java.io.Serializable
Returns an array of celebrities recognized in the input image. For more information, see Recognizing Celebrities in the Amazon Rekognition Developer Guide.
RecognizeCelebrities
returns the 64 largest faces in the image.
It lists recognized celebrities in the CelebrityFaces
array and
unrecognized faces in the UnrecognizedFaces
array.
RecognizeCelebrities
doesn't return celebrities whose faces
aren't among the largest 64 faces in the image.
For each celebrity recognized, RecognizeCelebrities
returns a
Celebrity
object. The Celebrity
object contains the
celebrity name, ID, URL links to additional information, match confidence,
and a ComparedFace
object that you can use to locate the
celebrity's face on the image.
Amazon Rekognition doesn't retain information about which images a celebrity
has been recognized in. Your application must store this information and use
the Celebrity
ID property as a unique identifier for the
celebrity. If you don't store the celebrity name or additional information
URLs returned by RecognizeCelebrities
, you will need the ID to
identify the celebrity in a call to the GetCelebrityInfo operation.
You pass the input image either as base64-encoded image bytes or as a reference to an image in an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, passing image bytes is not supported. The image must be either a PNG or JPEG formatted file.
For an example, see Recognizing Celebrities in an Image in the Amazon Rekognition Developer Guide.
This operation requires permissions to perform the
rekognition:RecognizeCelebrities
operation.
Constructor and Description |
---|
RecognizeCelebritiesRequest() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
Image |
getImage()
The input image as base64-encoded bytes or an S3 object.
|
int |
hashCode() |
void |
setImage(Image image)
The input image as base64-encoded bytes or an S3 object.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
RecognizeCelebritiesRequest |
withImage(Image image)
The input image as base64-encoded bytes or an S3 object.
|
clone, getCloneRoot, getCloneSource, getGeneralProgressListener, getRequestClientOptions, getRequestCredentials, getRequestMetricCollector, setGeneralProgressListener, setRequestCredentials, setRequestMetricCollector, withGeneralProgressListener, withRequestMetricCollector
public Image getImage()
The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.
If you are using an AWS SDK to call Amazon Rekognition, you might not
need to base64-encode image bytes passed using the Bytes
field. For more information, see Images in the Amazon Rekognition
developer guide.
The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.
If you are using an AWS SDK to call Amazon Rekognition, you might
not need to base64-encode image bytes passed using the
Bytes
field. For more information, see Images in the
Amazon Rekognition developer guide.
public void setImage(Image image)
The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.
If you are using an AWS SDK to call Amazon Rekognition, you might not
need to base64-encode image bytes passed using the Bytes
field. For more information, see Images in the Amazon Rekognition
developer guide.
image
- The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.
If you are using an AWS SDK to call Amazon Rekognition, you
might not need to base64-encode image bytes passed using the
Bytes
field. For more information, see Images in
the Amazon Rekognition developer guide.
public RecognizeCelebritiesRequest withImage(Image image)
The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.
If you are using an AWS SDK to call Amazon Rekognition, you might not
need to base64-encode image bytes passed using the Bytes
field. For more information, see Images in the Amazon Rekognition
developer guide.
Returns a reference to this object so that method calls can be chained together.
image
- The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.
If you are using an AWS SDK to call Amazon Rekognition, you
might not need to base64-encode image bytes passed using the
Bytes
field. For more information, see Images in
the Amazon Rekognition developer guide.
public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
Copyright © 2018 Amazon Web Services, Inc. All Rights Reserved.