AWSRekognition
Objective-C
@interface AWSRekognition
Swift
class AWSRekognition
This is the API Reference for Amazon Rekognition Image, Amazon Rekognition Custom Labels, Amazon Rekognition Stored Video, Amazon Rekognition Streaming Video. It provides descriptions of actions, data types, common parameters, and common errors.
Amazon Rekognition Image
Amazon Rekognition Custom Labels
Amazon Rekognition Video Stored Video
Amazon Rekognition Video Streaming Video
-
The service configuration used to instantiate this service client.
Warning
Once the client is instantiated, do not modify the configuration object. It may cause unspecified behaviors.Declaration
Objective-C
@property (nonatomic, strong, readonly) AWSServiceConfiguration *configuration
-
Returns the singleton service client. If the singleton object does not exist, the SDK instantiates the default service client with
defaultServiceConfiguration
from[AWSServiceManager defaultServiceManager]
. The reference to this object is maintained by the SDK, and you do not need to retain it manually.For example, set the default service configuration in
- application:didFinishLaunchingWithOptions:
Swift
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { let credentialProvider = AWSCognitoCredentialsProvider(regionType: .USEast1, identityPoolId: "YourIdentityPoolId") let configuration = AWSServiceConfiguration(region: .USEast1, credentialsProvider: credentialProvider) AWSServiceManager.default().defaultServiceConfiguration = configuration return true
}
Objective-C
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { AWSCognitoCredentialsProvider *credentialsProvider = [[AWSCognitoCredentialsProvider alloc] initWithRegionType:AWSRegionUSEast1 identityPoolId:@"YourIdentityPoolId"]; AWSServiceConfiguration *configuration = [[AWSServiceConfiguration alloc] initWithRegion:AWSRegionUSEast1 credentialsProvider:credentialsProvider]; [AWSServiceManager defaultServiceManager].defaultServiceConfiguration = configuration; return YES; }
Then call the following to get the default service client:
Swift
let Rekognition = AWSRekognition.default()
Objective-C
AWSRekognition *Rekognition = [AWSRekognition defaultRekognition];
Declaration
Objective-C
+ (nonnull instancetype)defaultRekognition;
Swift
class func `default`() -> Self
Return Value
The default service client.
-
Creates a service client with the given service configuration and registers it for the key.
For example, set the default service configuration in
- application:didFinishLaunchingWithOptions:
Swift
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { let credentialProvider = AWSCognitoCredentialsProvider(regionType: .USEast1, identityPoolId: "YourIdentityPoolId") let configuration = AWSServiceConfiguration(region: .USWest2, credentialsProvider: credentialProvider) AWSRekognition.register(with: configuration!, forKey: "USWest2Rekognition") return true
}
Objective-C
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { AWSCognitoCredentialsProvider *credentialsProvider = [[AWSCognitoCredentialsProvider alloc] initWithRegionType:AWSRegionUSEast1 identityPoolId:@"YourIdentityPoolId"]; AWSServiceConfiguration *configuration = [[AWSServiceConfiguration alloc] initWithRegion:AWSRegionUSWest2 credentialsProvider:credentialsProvider]; [AWSRekognition registerRekognitionWithConfiguration:configuration forKey:@"USWest2Rekognition"]; return YES; }
Then call the following to get the service client:
Swift
let Rekognition = AWSRekognition(forKey: "USWest2Rekognition")
Objective-C
AWSRekognition *Rekognition = [AWSRekognition RekognitionForKey:@"USWest2Rekognition"];
Warning
After calling this method, do not modify the configuration object. It may cause unspecified behaviors.
Declaration
Objective-C
+ (void)registerRekognitionWithConfiguration:(id)configuration forKey:(nonnull NSString *)key;
Swift
class func register(withConfiguration configuration: Any!, forKey key: String)
Parameters
configuration
A service configuration object.
key
A string to identify the service client.
-
Retrieves the service client associated with the key. You need to call
+ registerRekognitionWithConfiguration:forKey:
before invoking this method.For example, set the default service configuration in
- application:didFinishLaunchingWithOptions:
Swift
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { let credentialProvider = AWSCognitoCredentialsProvider(regionType: .USEast1, identityPoolId: "YourIdentityPoolId") let configuration = AWSServiceConfiguration(region: .USWest2, credentialsProvider: credentialProvider) AWSRekognition.register(with: configuration!, forKey: "USWest2Rekognition") return true
}
Objective-C
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { AWSCognitoCredentialsProvider *credentialsProvider = [[AWSCognitoCredentialsProvider alloc] initWithRegionType:AWSRegionUSEast1 identityPoolId:@"YourIdentityPoolId"]; AWSServiceConfiguration *configuration = [[AWSServiceConfiguration alloc] initWithRegion:AWSRegionUSWest2 credentialsProvider:credentialsProvider]; [AWSRekognition registerRekognitionWithConfiguration:configuration forKey:@"USWest2Rekognition"]; return YES; }
Then call the following to get the service client:
Swift
let Rekognition = AWSRekognition(forKey: "USWest2Rekognition")
Objective-C
AWSRekognition *Rekognition = [AWSRekognition RekognitionForKey:@"USWest2Rekognition"];
Declaration
Objective-C
+ (nonnull instancetype)RekognitionForKey:(nonnull NSString *)key;
Swift
convenience init(forKey key: String)
Parameters
key
A string to identify the service client.
Return Value
An instance of the service client.
-
Removes the service client associated with the key and release it.
Warning
Before calling this method, make sure no method is running on this client.
Declaration
Objective-C
+ (void)removeRekognitionForKey:(nonnull NSString *)key;
Swift
class func remove(forKey key: String)
Parameters
key
A string to identify the service client.
-
Associates one or more faces with an existing UserID. Takes an array of
FaceIds
. EachFaceId
that are present in theFaceIds
list is associated with the provided UserID. The maximum number of totalFaceIds
per UserID is 100.The
UserMatchThreshold
parameter specifies the minimum user match confidence required for the face to be associated with a UserID that has at least oneFaceID
already associated. This ensures that theFaceIds
are associated with the right UserID. The value ranges from 0-100 and default value is 75.If successful, an array of
AssociatedFace
objects containing the associatedFaceIds
is returned. If a given face is already associated with the givenUserID
, it will be ignored and will not be returned in the response. If a given face is already associated to a differentUserID
, isn’t found in the collection, doesn’t meet theUserMatchThreshold
, or there are already 100 faces associated with theUserID
, it will be returned as part of an array ofUnsuccessfulFaceAssociations.
The
UserStatus
reflects the status of an operation which updates a UserID representation with a list of given faces. TheUserStatus
can be:ACTIVE - All associations or disassociations of FaceID(s) for a UserID are complete.
CREATED - A UserID has been created, but has no FaceID(s) associated with it.
UPDATING - A UserID is being updated and there are current associations or disassociations of FaceID(s) taking place.
See
AWSRekognitionAssociateFacesRequest
See
AWSRekognitionAssociateFacesResponse
Declaration
Objective-C
- (id)associateFaces:(nonnull AWSRekognitionAssociateFacesRequest *)request;
Swift
func associateFaces(_ request: AWSRekognitionAssociateFacesRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the AssociateFaces service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionAssociateFacesResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorConflict
,AWSRekognitionErrorServiceQuotaExceeded
. -
Associates one or more faces with an existing UserID. Takes an array of
FaceIds
. EachFaceId
that are present in theFaceIds
list is associated with the provided UserID. The maximum number of totalFaceIds
per UserID is 100.The
UserMatchThreshold
parameter specifies the minimum user match confidence required for the face to be associated with a UserID that has at least oneFaceID
already associated. This ensures that theFaceIds
are associated with the right UserID. The value ranges from 0-100 and default value is 75.If successful, an array of
AssociatedFace
objects containing the associatedFaceIds
is returned. If a given face is already associated with the givenUserID
, it will be ignored and will not be returned in the response. If a given face is already associated to a differentUserID
, isn’t found in the collection, doesn’t meet theUserMatchThreshold
, or there are already 100 faces associated with theUserID
, it will be returned as part of an array ofUnsuccessfulFaceAssociations.
The
UserStatus
reflects the status of an operation which updates a UserID representation with a list of given faces. TheUserStatus
can be:ACTIVE - All associations or disassociations of FaceID(s) for a UserID are complete.
CREATED - A UserID has been created, but has no FaceID(s) associated with it.
UPDATING - A UserID is being updated and there are current associations or disassociations of FaceID(s) taking place.
See
AWSRekognitionAssociateFacesRequest
See
AWSRekognitionAssociateFacesResponse
Declaration
Objective-C
- (void)associateFaces:(nonnull AWSRekognitionAssociateFacesRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionAssociateFacesResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func associateFaces(_ request: AWSRekognitionAssociateFacesRequest) async throws -> AWSRekognitionAssociateFacesResponse
Parameters
request
A container for the necessary parameters to execute the AssociateFaces service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorConflict
,AWSRekognitionErrorServiceQuotaExceeded
. -
Compares a face in the source input image with each of the 100 largest faces detected in the target input image.
If the source image contains multiple faces, the service detects the largest face and compares it with each face detected in the target image.
CompareFaces uses machine learning algorithms, which are probabilistic. A false negative is an incorrect prediction that a face in the target image has a low similarity confidence score when compared to the face in the source image. To reduce the probability of false negatives, we recommend that you compare the target image against multiple source images. If you plan to use
CompareFaces
to make a decision that impacts an individual’s rights, privacy, or access to services, we recommend that you pass the result to a human for review and further validation before taking action.You pass the input and target images either as base64-encoded image bytes or as references to images in an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, passing image bytes isn’t supported. The image must be formatted as a PNG or JPEG file.
In response, the operation returns an array of face matches ordered by similarity score in descending order. For each face match, the response provides a bounding box of the face, facial landmarks, pose details (pitch, roll, and yaw), quality (brightness and sharpness), and confidence value (indicating the level of confidence that the bounding box contains a face). The response also provides a similarity score, which indicates how closely the faces match.
By default, only faces with a similarity score of greater than or equal to 80% are returned in the response. You can change this value by specifying the
SimilarityThreshold
parameter.CompareFaces
also returns an array of faces that don’t match the source image. For each face, it returns a bounding box, confidence value, landmarks, pose details, and quality. The response also returns information about the face in the source image, including the bounding box of the face and confidence value.The
QualityFilter
input parameter allows you to filter out detected faces that don’t meet a required quality bar. The quality bar is based on a variety of common use cases. UseQualityFilter
to set the quality bar by specifyingLOW
,MEDIUM
, orHIGH
. If you do not want to filter detected faces, specifyNONE
. The default value isNONE
.If the image doesn’t contain Exif metadata,
CompareFaces
returns orientation information for the source and target images. Use these values to display the images with the correct image orientation.If no faces are detected in the source or target images,
CompareFaces
returns anInvalidParameterException
error.This is a stateless API operation. That is, data returned by this operation doesn’t persist.
For an example, see Comparing Faces in Images in the Amazon Rekognition Developer Guide.
This operation requires permissions to perform the
rekognition:CompareFaces
action.See
AWSRekognitionCompareFacesRequest
See
AWSRekognitionCompareFacesResponse
Declaration
Objective-C
- (id)compareFaces:(nonnull AWSRekognitionCompareFacesRequest *)request;
Swift
func compareFaces(_ request: AWSRekognitionCompareFacesRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the CompareFaces service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionCompareFacesResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidImageFormat
. -
Compares a face in the source input image with each of the 100 largest faces detected in the target input image.
If the source image contains multiple faces, the service detects the largest face and compares it with each face detected in the target image.
CompareFaces uses machine learning algorithms, which are probabilistic. A false negative is an incorrect prediction that a face in the target image has a low similarity confidence score when compared to the face in the source image. To reduce the probability of false negatives, we recommend that you compare the target image against multiple source images. If you plan to use
CompareFaces
to make a decision that impacts an individual’s rights, privacy, or access to services, we recommend that you pass the result to a human for review and further validation before taking action.You pass the input and target images either as base64-encoded image bytes or as references to images in an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, passing image bytes isn’t supported. The image must be formatted as a PNG or JPEG file.
In response, the operation returns an array of face matches ordered by similarity score in descending order. For each face match, the response provides a bounding box of the face, facial landmarks, pose details (pitch, roll, and yaw), quality (brightness and sharpness), and confidence value (indicating the level of confidence that the bounding box contains a face). The response also provides a similarity score, which indicates how closely the faces match.
By default, only faces with a similarity score of greater than or equal to 80% are returned in the response. You can change this value by specifying the
SimilarityThreshold
parameter.CompareFaces
also returns an array of faces that don’t match the source image. For each face, it returns a bounding box, confidence value, landmarks, pose details, and quality. The response also returns information about the face in the source image, including the bounding box of the face and confidence value.The
QualityFilter
input parameter allows you to filter out detected faces that don’t meet a required quality bar. The quality bar is based on a variety of common use cases. UseQualityFilter
to set the quality bar by specifyingLOW
,MEDIUM
, orHIGH
. If you do not want to filter detected faces, specifyNONE
. The default value isNONE
.If the image doesn’t contain Exif metadata,
CompareFaces
returns orientation information for the source and target images. Use these values to display the images with the correct image orientation.If no faces are detected in the source or target images,
CompareFaces
returns anInvalidParameterException
error.This is a stateless API operation. That is, data returned by this operation doesn’t persist.
For an example, see Comparing Faces in Images in the Amazon Rekognition Developer Guide.
This operation requires permissions to perform the
rekognition:CompareFaces
action.See
AWSRekognitionCompareFacesRequest
See
AWSRekognitionCompareFacesResponse
Declaration
Objective-C
- (void)compareFaces:(nonnull AWSRekognitionCompareFacesRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionCompareFacesResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func compareFaces(_ request: AWSRekognitionCompareFacesRequest) async throws -> AWSRekognitionCompareFacesResponse
Parameters
request
A container for the necessary parameters to execute the CompareFaces service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidImageFormat
. -
This operation applies only to Amazon Rekognition Custom Labels.
Copies a version of an Amazon Rekognition Custom Labels model from a source project to a destination project. The source and destination projects can be in different AWS accounts but must be in the same AWS Region. You can’t copy a model to another AWS service.
To copy a model version to a different AWS account, you need to create a resource-based policy known as a project policy. You attach the project policy to the source project by calling PutProjectPolicy. The project policy gives permission to copy the model version from a trusting AWS account to a trusted account.
For more information creating and attaching a project policy, see Attaching a project policy (SDK) in the Amazon Rekognition Custom Labels Developer Guide.
If you are copying a model version to a project in the same AWS account, you don’t need to create a project policy.
Copying project versions is supported only for Custom Labels models.
To copy a model, the destination project, source project, and source model version must already exist.
Copying a model version takes a while to complete. To get the current status, call DescribeProjectVersions and check the value of
Status
in the ProjectVersionDescription object. The copy operation has finished when the value ofStatus
isCOPYING_COMPLETED
.This operation requires permissions to perform the
rekognition:CopyProjectVersion
action.See
AWSRekognitionReplicateProjectVersionRequest
See
AWSRekognitionReplicateProjectVersionResponse
Declaration
Objective-C
- (id)replicateProjectVersion: (nonnull AWSRekognitionReplicateProjectVersionRequest *)request;
Swift
func replicateProjectVersion(_ request: AWSRekognitionReplicateProjectVersionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the CopyProjectVersion service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionReplicateProjectVersionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorServiceQuotaExceeded
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceInUse
. -
This operation applies only to Amazon Rekognition Custom Labels.
Copies a version of an Amazon Rekognition Custom Labels model from a source project to a destination project. The source and destination projects can be in different AWS accounts but must be in the same AWS Region. You can’t copy a model to another AWS service.
To copy a model version to a different AWS account, you need to create a resource-based policy known as a project policy. You attach the project policy to the source project by calling PutProjectPolicy. The project policy gives permission to copy the model version from a trusting AWS account to a trusted account.
For more information creating and attaching a project policy, see Attaching a project policy (SDK) in the Amazon Rekognition Custom Labels Developer Guide.
If you are copying a model version to a project in the same AWS account, you don’t need to create a project policy.
Copying project versions is supported only for Custom Labels models.
To copy a model, the destination project, source project, and source model version must already exist.
Copying a model version takes a while to complete. To get the current status, call DescribeProjectVersions and check the value of
Status
in the ProjectVersionDescription object. The copy operation has finished when the value ofStatus
isCOPYING_COMPLETED
.This operation requires permissions to perform the
rekognition:CopyProjectVersion
action.See
AWSRekognitionReplicateProjectVersionRequest
See
AWSRekognitionReplicateProjectVersionResponse
Declaration
Objective-C
- (void)replicateProjectVersion: (nonnull AWSRekognitionReplicateProjectVersionRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionReplicateProjectVersionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func replicateProjectVersion(_ request: AWSRekognitionReplicateProjectVersionRequest) async throws -> AWSRekognitionReplicateProjectVersionResponse
Parameters
request
A container for the necessary parameters to execute the CopyProjectVersion service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorServiceQuotaExceeded
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceInUse
. -
Creates a collection in an AWS Region. You can add faces to the collection using the IndexFaces operation.
For example, you might create collections, one for each of your application users. A user can then index faces using the
IndexFaces
operation and persist results in a specific collection. Then, a user can search the collection for faces in the user-specific container.When you create a collection, it is associated with the latest version of the face model version.
Collection names are case-sensitive.
This operation requires permissions to perform the
rekognition:CreateCollection
action. If you want to tag your collection, you also require permission to perform therekognition:TagResource
operation.See
AWSRekognitionCreateCollectionRequest
See
AWSRekognitionCreateCollectionResponse
Declaration
Objective-C
- (id)createCollection:(nonnull AWSRekognitionCreateCollectionRequest *)request;
Swift
func createCollection(_ request: AWSRekognitionCreateCollectionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the CreateCollection service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionCreateCollectionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceAlreadyExists
,AWSRekognitionErrorServiceQuotaExceeded
. -
Creates a collection in an AWS Region. You can add faces to the collection using the IndexFaces operation.
For example, you might create collections, one for each of your application users. A user can then index faces using the
IndexFaces
operation and persist results in a specific collection. Then, a user can search the collection for faces in the user-specific container.When you create a collection, it is associated with the latest version of the face model version.
Collection names are case-sensitive.
This operation requires permissions to perform the
rekognition:CreateCollection
action. If you want to tag your collection, you also require permission to perform therekognition:TagResource
operation.See
AWSRekognitionCreateCollectionRequest
See
AWSRekognitionCreateCollectionResponse
Declaration
Objective-C
- (void)createCollection: (nonnull AWSRekognitionCreateCollectionRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionCreateCollectionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func createCollection(_ request: AWSRekognitionCreateCollectionRequest) async throws -> AWSRekognitionCreateCollectionResponse
Parameters
request
A container for the necessary parameters to execute the CreateCollection service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceAlreadyExists
,AWSRekognitionErrorServiceQuotaExceeded
. -
This operation applies only to Amazon Rekognition Custom Labels.
Creates a new Amazon Rekognition Custom Labels dataset. You can create a dataset by using an Amazon Sagemaker format manifest file or by copying an existing Amazon Rekognition Custom Labels dataset.
To create a training dataset for a project, specify
TRAIN
for the value ofDatasetType
. To create the test dataset for a project, specifyTEST
for the value ofDatasetType
.The response from
CreateDataset
is the Amazon Resource Name (ARN) for the dataset. Creating a dataset takes a while to complete. Use DescribeDataset to check the current status. The dataset created successfully if the value ofStatus
isCREATE_COMPLETE
.To check if any non-terminal errors occurred, call ListDatasetEntries and check for the presence of
errors
lists in the JSON Lines.Dataset creation fails if a terminal error occurs (
Status
=CREATE_FAILED
). Currently, you can’t access the terminal error information.For more information, see Creating dataset in the Amazon Rekognition Custom Labels Developer Guide.
This operation requires permissions to perform the
rekognition:CreateDataset
action. If you want to copy an existing dataset, you also require permission to perform therekognition:ListDatasetEntries
action.See
AWSRekognitionCreateDatasetRequest
See
AWSRekognitionCreateDatasetResponse
Declaration
Objective-C
- (id)createDataset:(nonnull AWSRekognitionCreateDatasetRequest *)request;
Swift
func createDataset(_ request: AWSRekognitionCreateDatasetRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the CreateDataset service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionCreateDatasetResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorResourceAlreadyExists
,AWSRekognitionErrorResourceNotFound
. -
This operation applies only to Amazon Rekognition Custom Labels.
Creates a new Amazon Rekognition Custom Labels dataset. You can create a dataset by using an Amazon Sagemaker format manifest file or by copying an existing Amazon Rekognition Custom Labels dataset.
To create a training dataset for a project, specify
TRAIN
for the value ofDatasetType
. To create the test dataset for a project, specifyTEST
for the value ofDatasetType
.The response from
CreateDataset
is the Amazon Resource Name (ARN) for the dataset. Creating a dataset takes a while to complete. Use DescribeDataset to check the current status. The dataset created successfully if the value ofStatus
isCREATE_COMPLETE
.To check if any non-terminal errors occurred, call ListDatasetEntries and check for the presence of
errors
lists in the JSON Lines.Dataset creation fails if a terminal error occurs (
Status
=CREATE_FAILED
). Currently, you can’t access the terminal error information.For more information, see Creating dataset in the Amazon Rekognition Custom Labels Developer Guide.
This operation requires permissions to perform the
rekognition:CreateDataset
action. If you want to copy an existing dataset, you also require permission to perform therekognition:ListDatasetEntries
action.See
AWSRekognitionCreateDatasetRequest
See
AWSRekognitionCreateDatasetResponse
Declaration
Objective-C
- (void)createDataset:(nonnull AWSRekognitionCreateDatasetRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionCreateDatasetResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func createDataset(_ request: AWSRekognitionCreateDatasetRequest) async throws -> AWSRekognitionCreateDatasetResponse
Parameters
request
A container for the necessary parameters to execute the CreateDataset service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorResourceAlreadyExists
,AWSRekognitionErrorResourceNotFound
. -
This API operation initiates a Face Liveness session. It returns a
SessionId
, which you can use to start streaming Face Liveness video and get the results for a Face Liveness session.You can use the
OutputConfig
option in the Settings parameter to provide an Amazon S3 bucket location. The Amazon S3 bucket stores reference images and audit images. If no Amazon S3 bucket is defined, raw bytes are sent instead.You can use
AuditImagesLimit
to limit the number of audit images returned whenGetFaceLivenessSessionResults
is called. This number is between 0 and 4. By default, it is set to 0. The limit is best effort and based on the duration of the selfie-video.See
AWSRekognitionCreateFaceLivenessSessionRequest
See
AWSRekognitionCreateFaceLivenessSessionResponse
Declaration
Objective-C
- (id)createFaceLivenessSession: (nonnull AWSRekognitionCreateFaceLivenessSessionRequest *)request;
Swift
func createFaceLivenessSession(_ request: AWSRekognitionCreateFaceLivenessSessionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the CreateFaceLivenessSession service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionCreateFaceLivenessSessionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
This API operation initiates a Face Liveness session. It returns a
SessionId
, which you can use to start streaming Face Liveness video and get the results for a Face Liveness session.You can use the
OutputConfig
option in the Settings parameter to provide an Amazon S3 bucket location. The Amazon S3 bucket stores reference images and audit images. If no Amazon S3 bucket is defined, raw bytes are sent instead.You can use
AuditImagesLimit
to limit the number of audit images returned whenGetFaceLivenessSessionResults
is called. This number is between 0 and 4. By default, it is set to 0. The limit is best effort and based on the duration of the selfie-video.See
AWSRekognitionCreateFaceLivenessSessionRequest
See
AWSRekognitionCreateFaceLivenessSessionResponse
Declaration
Objective-C
- (void) createFaceLivenessSession: (nonnull AWSRekognitionCreateFaceLivenessSessionRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionCreateFaceLivenessSessionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func createFaceLivenessSession(_ request: AWSRekognitionCreateFaceLivenessSessionRequest) async throws -> AWSRekognitionCreateFaceLivenessSessionResponse
Parameters
request
A container for the necessary parameters to execute the CreateFaceLivenessSession service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Creates a new Amazon Rekognition project. A project is a group of resources (datasets, model versions) that you use to create and manage a Amazon Rekognition Custom Labels Model or custom adapter. You can specify a feature to create the project with, if no feature is specified then Custom Labels is used by default. For adapters, you can also choose whether or not to have the project auto update by using the AutoUpdate argument. This operation requires permissions to perform the
rekognition:CreateProject
action.See
AWSRekognitionCreateProjectRequest
See
AWSRekognitionCreateProjectResponse
Declaration
Objective-C
- (id)createProject:(nonnull AWSRekognitionCreateProjectRequest *)request;
Swift
func createProject(_ request: AWSRekognitionCreateProjectRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the CreateProject service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionCreateProjectResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Creates a new Amazon Rekognition project. A project is a group of resources (datasets, model versions) that you use to create and manage a Amazon Rekognition Custom Labels Model or custom adapter. You can specify a feature to create the project with, if no feature is specified then Custom Labels is used by default. For adapters, you can also choose whether or not to have the project auto update by using the AutoUpdate argument. This operation requires permissions to perform the
rekognition:CreateProject
action.See
AWSRekognitionCreateProjectRequest
See
AWSRekognitionCreateProjectResponse
Declaration
Objective-C
- (void)createProject:(nonnull AWSRekognitionCreateProjectRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionCreateProjectResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func createProject(_ request: AWSRekognitionCreateProjectRequest) async throws -> AWSRekognitionCreateProjectResponse
Parameters
request
A container for the necessary parameters to execute the CreateProject service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Creates a new version of Amazon Rekognition project (like a Custom Labels model or a custom adapter) and begins training. Models and adapters are managed as part of a Rekognition project. The response from
CreateProjectVersion
is an Amazon Resource Name (ARN) for the project version.The FeatureConfig operation argument allows you to configure specific model or adapter settings. You can provide a description to the project version by using the VersionDescription argment. Training can take a while to complete. You can get the current status by calling DescribeProjectVersions. Training completed successfully if the value of the
Status
field isTRAINING_COMPLETED
. Once training has successfully completed, call DescribeProjectVersions to get the training results and evaluate the model.This operation requires permissions to perform the
rekognition:CreateProjectVersion
action.The following applies only to projects with Amazon Rekognition Custom Labels as the chosen feature:
You can train a model in a project that doesn’t have associated datasets by specifying manifest files in the
TrainingData
andTestingData
fields.If you open the console after training a model with manifest files, Amazon Rekognition Custom Labels creates the datasets for you using the most recent manifest files. You can no longer train a model version for the project by specifying manifest files.
Instead of training with a project without associated datasets, we recommend that you use the manifest files to create training and test datasets for the project.
See
AWSRekognitionCreateProjectVersionRequest
See
AWSRekognitionCreateProjectVersionResponse
Declaration
Objective-C
- (id)createProjectVersion: (nonnull AWSRekognitionCreateProjectVersionRequest *)request;
Swift
func createProjectVersion(_ request: AWSRekognitionCreateProjectVersionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the CreateProjectVersion service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionCreateProjectVersionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorServiceQuotaExceeded
. -
Creates a new version of Amazon Rekognition project (like a Custom Labels model or a custom adapter) and begins training. Models and adapters are managed as part of a Rekognition project. The response from
CreateProjectVersion
is an Amazon Resource Name (ARN) for the project version.The FeatureConfig operation argument allows you to configure specific model or adapter settings. You can provide a description to the project version by using the VersionDescription argment. Training can take a while to complete. You can get the current status by calling DescribeProjectVersions. Training completed successfully if the value of the
Status
field isTRAINING_COMPLETED
. Once training has successfully completed, call DescribeProjectVersions to get the training results and evaluate the model.This operation requires permissions to perform the
rekognition:CreateProjectVersion
action.The following applies only to projects with Amazon Rekognition Custom Labels as the chosen feature:
You can train a model in a project that doesn’t have associated datasets by specifying manifest files in the
TrainingData
andTestingData
fields.If you open the console after training a model with manifest files, Amazon Rekognition Custom Labels creates the datasets for you using the most recent manifest files. You can no longer train a model version for the project by specifying manifest files.
Instead of training with a project without associated datasets, we recommend that you use the manifest files to create training and test datasets for the project.
See
AWSRekognitionCreateProjectVersionRequest
See
AWSRekognitionCreateProjectVersionResponse
Declaration
Objective-C
- (void)createProjectVersion: (nonnull AWSRekognitionCreateProjectVersionRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionCreateProjectVersionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func createProjectVersion(_ request: AWSRekognitionCreateProjectVersionRequest) async throws -> AWSRekognitionCreateProjectVersionResponse
Parameters
request
A container for the necessary parameters to execute the CreateProjectVersion service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorServiceQuotaExceeded
. -
Creates an Amazon Rekognition stream processor that you can use to detect and recognize faces or to detect labels in a streaming video.
Amazon Rekognition Video is a consumer of live video from Amazon Kinesis Video Streams. There are two different settings for stream processors in Amazon Rekognition: detecting faces and detecting labels.
If you are creating a stream processor for detecting faces, you provide as input a Kinesis video stream (
Input
) and a Kinesis data stream (Output
) stream for receiving the output. You must use theFaceSearch
option inSettings
, specifying the collection that contains the faces you want to recognize. After you have finished analyzing a streaming video, use StopStreamProcessor to stop processing.If you are creating a stream processor to detect labels, you provide as input a Kinesis video stream (
Input
), Amazon S3 bucket information (Output
), and an Amazon SNS topic ARN (NotificationChannel
). You can also provide a KMS key ID to encrypt the data sent to your Amazon S3 bucket. You specify what you want to detect by using theConnectedHome
option in settings, and selecting one of the following:PERSON
,PET
,PACKAGE
,ALL
You can also specify where in the frame you want Amazon Rekognition to monitor withRegionsOfInterest
. When you run the StartStreamProcessor operation on a label detection stream processor, you input start and stop information to determine the length of the processing time.
Use
Name
to assign an identifier for the stream processor. You useName
to manage the stream processor. For example, you can start processing the source video by calling StartStreamProcessor with theName
field.This operation requires permissions to perform the
rekognition:CreateStreamProcessor
action. If you want to tag your stream processor, you also require permission to perform therekognition:TagResource
operation.See
AWSRekognitionCreateStreamProcessorRequest
See
AWSRekognitionCreateStreamProcessorResponse
Declaration
Objective-C
- (id)createStreamProcessor: (nonnull AWSRekognitionCreateStreamProcessorRequest *)request;
Swift
func createStreamProcessor(_ request: AWSRekognitionCreateStreamProcessorRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the CreateStreamProcessor service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionCreateStreamProcessorResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorServiceQuotaExceeded
. -
Creates an Amazon Rekognition stream processor that you can use to detect and recognize faces or to detect labels in a streaming video.
Amazon Rekognition Video is a consumer of live video from Amazon Kinesis Video Streams. There are two different settings for stream processors in Amazon Rekognition: detecting faces and detecting labels.
If you are creating a stream processor for detecting faces, you provide as input a Kinesis video stream (
Input
) and a Kinesis data stream (Output
) stream for receiving the output. You must use theFaceSearch
option inSettings
, specifying the collection that contains the faces you want to recognize. After you have finished analyzing a streaming video, use StopStreamProcessor to stop processing.If you are creating a stream processor to detect labels, you provide as input a Kinesis video stream (
Input
), Amazon S3 bucket information (Output
), and an Amazon SNS topic ARN (NotificationChannel
). You can also provide a KMS key ID to encrypt the data sent to your Amazon S3 bucket. You specify what you want to detect by using theConnectedHome
option in settings, and selecting one of the following:PERSON
,PET
,PACKAGE
,ALL
You can also specify where in the frame you want Amazon Rekognition to monitor withRegionsOfInterest
. When you run the StartStreamProcessor operation on a label detection stream processor, you input start and stop information to determine the length of the processing time.
Use
Name
to assign an identifier for the stream processor. You useName
to manage the stream processor. For example, you can start processing the source video by calling StartStreamProcessor with theName
field.This operation requires permissions to perform the
rekognition:CreateStreamProcessor
action. If you want to tag your stream processor, you also require permission to perform therekognition:TagResource
operation.See
AWSRekognitionCreateStreamProcessorRequest
See
AWSRekognitionCreateStreamProcessorResponse
Declaration
Objective-C
- (void)createStreamProcessor: (nonnull AWSRekognitionCreateStreamProcessorRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionCreateStreamProcessorResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func createStreamProcessor(_ request: AWSRekognitionCreateStreamProcessorRequest) async throws -> AWSRekognitionCreateStreamProcessorResponse
Parameters
request
A container for the necessary parameters to execute the CreateStreamProcessor service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorServiceQuotaExceeded
. -
Creates a new User within a collection specified by
CollectionId
. TakesUserId
as a parameter, which is a user provided ID which should be unique within the collection. The providedUserId
will alias the system generated UUID to make theUserId
more user friendly.Uses a
ClientToken
, an idempotency token that ensures a call toCreateUser
completes only once. If the value is not supplied, the AWS SDK generates an idempotency token for the requests. This prevents retries after a network error results from making multipleCreateUser
calls.See
AWSRekognitionCreateUserRequest
See
AWSRekognitionCreateUserResponse
Declaration
Objective-C
- (id)createUser:(nonnull AWSRekognitionCreateUserRequest *)request;
Swift
func createUser(_ request: AWSRekognitionCreateUserRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the CreateUser service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionCreateUserResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorConflict
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorServiceQuotaExceeded
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
. -
Creates a new User within a collection specified by
CollectionId
. TakesUserId
as a parameter, which is a user provided ID which should be unique within the collection. The providedUserId
will alias the system generated UUID to make theUserId
more user friendly.Uses a
ClientToken
, an idempotency token that ensures a call toCreateUser
completes only once. If the value is not supplied, the AWS SDK generates an idempotency token for the requests. This prevents retries after a network error results from making multipleCreateUser
calls.See
AWSRekognitionCreateUserRequest
See
AWSRekognitionCreateUserResponse
Declaration
Objective-C
- (void)createUser:(nonnull AWSRekognitionCreateUserRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionCreateUserResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func createUser(_ request: AWSRekognitionCreateUserRequest) async throws -> AWSRekognitionCreateUserResponse
Parameters
request
A container for the necessary parameters to execute the CreateUser service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorConflict
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorServiceQuotaExceeded
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
. -
Deletes the specified collection. Note that this operation removes all faces in the collection. For an example, see Deleting a collection.
This operation requires permissions to perform the
rekognition:DeleteCollection
action.See
AWSRekognitionDeleteCollectionRequest
See
AWSRekognitionDeleteCollectionResponse
Declaration
Objective-C
- (id)deleteCollection:(nonnull AWSRekognitionDeleteCollectionRequest *)request;
Swift
func deleteCollection(_ request: AWSRekognitionDeleteCollectionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DeleteCollection service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDeleteCollectionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
. -
Deletes the specified collection. Note that this operation removes all faces in the collection. For an example, see Deleting a collection.
This operation requires permissions to perform the
rekognition:DeleteCollection
action.See
AWSRekognitionDeleteCollectionRequest
See
AWSRekognitionDeleteCollectionResponse
Declaration
Objective-C
- (void)deleteCollection: (nonnull AWSRekognitionDeleteCollectionRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionDeleteCollectionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func deleteCollection(_ request: AWSRekognitionDeleteCollectionRequest) async throws -> AWSRekognitionDeleteCollectionResponse
Parameters
request
A container for the necessary parameters to execute the DeleteCollection service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
. -
This operation applies only to Amazon Rekognition Custom Labels.
Deletes an existing Amazon Rekognition Custom Labels dataset. Deleting a dataset might take while. Use DescribeDataset to check the current status. The dataset is still deleting if the value of
Status
isDELETE_IN_PROGRESS
. If you try to access the dataset after it is deleted, you get aResourceNotFoundException
exception.You can’t delete a dataset while it is creating (
Status
=CREATE_IN_PROGRESS
) or if the dataset is updating (Status
=UPDATE_IN_PROGRESS
).This operation requires permissions to perform the
rekognition:DeleteDataset
action.See
AWSRekognitionDeleteDatasetRequest
See
AWSRekognitionDeleteDatasetResponse
Declaration
Objective-C
- (id)deleteDataset:(nonnull AWSRekognitionDeleteDatasetRequest *)request;
Swift
func deleteDataset(_ request: AWSRekognitionDeleteDatasetRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DeleteDataset service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDeleteDatasetResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorResourceNotFound
. -
This operation applies only to Amazon Rekognition Custom Labels.
Deletes an existing Amazon Rekognition Custom Labels dataset. Deleting a dataset might take while. Use DescribeDataset to check the current status. The dataset is still deleting if the value of
Status
isDELETE_IN_PROGRESS
. If you try to access the dataset after it is deleted, you get aResourceNotFoundException
exception.You can’t delete a dataset while it is creating (
Status
=CREATE_IN_PROGRESS
) or if the dataset is updating (Status
=UPDATE_IN_PROGRESS
).This operation requires permissions to perform the
rekognition:DeleteDataset
action.See
AWSRekognitionDeleteDatasetRequest
See
AWSRekognitionDeleteDatasetResponse
Declaration
Objective-C
- (void)deleteDataset:(nonnull AWSRekognitionDeleteDatasetRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionDeleteDatasetResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func deleteDataset(_ request: AWSRekognitionDeleteDatasetRequest) async throws -> AWSRekognitionDeleteDatasetResponse
Parameters
request
A container for the necessary parameters to execute the DeleteDataset service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorResourceNotFound
. -
Deletes faces from a collection. You specify a collection ID and an array of face IDs to remove from the collection.
This operation requires permissions to perform the
rekognition:DeleteFaces
action.See
AWSRekognitionDeleteFacesRequest
See
AWSRekognitionDeleteFacesResponse
Declaration
Objective-C
- (id)deleteFaces:(nonnull AWSRekognitionDeleteFacesRequest *)request;
Swift
func deleteFaces(_ request: AWSRekognitionDeleteFacesRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DeleteFaces service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDeleteFacesResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
. -
Deletes faces from a collection. You specify a collection ID and an array of face IDs to remove from the collection.
This operation requires permissions to perform the
rekognition:DeleteFaces
action.See
AWSRekognitionDeleteFacesRequest
See
AWSRekognitionDeleteFacesResponse
Declaration
Objective-C
- (void)deleteFaces:(nonnull AWSRekognitionDeleteFacesRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionDeleteFacesResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func deleteFaces(_ request: AWSRekognitionDeleteFacesRequest) async throws -> AWSRekognitionDeleteFacesResponse
Parameters
request
A container for the necessary parameters to execute the DeleteFaces service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
. -
Deletes a Amazon Rekognition project. To delete a project you must first delete all models or adapters associated with the project. To delete a model or adapter, see DeleteProjectVersion.
DeleteProject
is an asynchronous operation. To check if the project is deleted, call DescribeProjects. The project is deleted when the project no longer appears in the response. Be aware that deleting a given project will also delete anyProjectPolicies
associated with that project.This operation requires permissions to perform the
rekognition:DeleteProject
action.See
AWSRekognitionDeleteProjectRequest
See
AWSRekognitionDeleteProjectResponse
Declaration
Objective-C
- (id)deleteProject:(nonnull AWSRekognitionDeleteProjectRequest *)request;
Swift
func deleteProject(_ request: AWSRekognitionDeleteProjectRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DeleteProject service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDeleteProjectResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Deletes a Amazon Rekognition project. To delete a project you must first delete all models or adapters associated with the project. To delete a model or adapter, see DeleteProjectVersion.
DeleteProject
is an asynchronous operation. To check if the project is deleted, call DescribeProjects. The project is deleted when the project no longer appears in the response. Be aware that deleting a given project will also delete anyProjectPolicies
associated with that project.This operation requires permissions to perform the
rekognition:DeleteProject
action.See
AWSRekognitionDeleteProjectRequest
See
AWSRekognitionDeleteProjectResponse
Declaration
Objective-C
- (void)deleteProject:(nonnull AWSRekognitionDeleteProjectRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionDeleteProjectResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func deleteProject(_ request: AWSRekognitionDeleteProjectRequest) async throws -> AWSRekognitionDeleteProjectResponse
Parameters
request
A container for the necessary parameters to execute the DeleteProject service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
This operation applies only to Amazon Rekognition Custom Labels.
Deletes an existing project policy.
To get a list of project policies attached to a project, call ListProjectPolicies. To attach a project policy to a project, call PutProjectPolicy.
This operation requires permissions to perform the
rekognition:DeleteProjectPolicy
action.See
AWSRekognitionDeleteProjectPolicyRequest
See
AWSRekognitionDeleteProjectPolicyResponse
Declaration
Objective-C
- (id)deleteProjectPolicy: (nonnull AWSRekognitionDeleteProjectPolicyRequest *)request;
Swift
func deleteProjectPolicy(_ request: AWSRekognitionDeleteProjectPolicyRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DeleteProjectPolicy service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDeleteProjectPolicyResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidPolicyRevisionId
. -
This operation applies only to Amazon Rekognition Custom Labels.
Deletes an existing project policy.
To get a list of project policies attached to a project, call ListProjectPolicies. To attach a project policy to a project, call PutProjectPolicy.
This operation requires permissions to perform the
rekognition:DeleteProjectPolicy
action.See
AWSRekognitionDeleteProjectPolicyRequest
See
AWSRekognitionDeleteProjectPolicyResponse
Declaration
Objective-C
- (void)deleteProjectPolicy: (nonnull AWSRekognitionDeleteProjectPolicyRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionDeleteProjectPolicyResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func deleteProjectPolicy(_ request: AWSRekognitionDeleteProjectPolicyRequest) async throws -> AWSRekognitionDeleteProjectPolicyResponse
Parameters
request
A container for the necessary parameters to execute the DeleteProjectPolicy service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidPolicyRevisionId
. -
Deletes a Rekognition project model or project version, like a Amazon Rekognition Custom Labels model or a custom adapter.
You can’t delete a project version if it is running or if it is training. To check the status of a project version, use the Status field returned from DescribeProjectVersions. To stop a project version call StopProjectVersion. If the project version is training, wait until it finishes.
This operation requires permissions to perform the
rekognition:DeleteProjectVersion
action.See
AWSRekognitionDeleteProjectVersionRequest
See
AWSRekognitionDeleteProjectVersionResponse
Declaration
Objective-C
- (id)deleteProjectVersion: (nonnull AWSRekognitionDeleteProjectVersionRequest *)request;
Swift
func deleteProjectVersion(_ request: AWSRekognitionDeleteProjectVersionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DeleteProjectVersion service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDeleteProjectVersionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Deletes a Rekognition project model or project version, like a Amazon Rekognition Custom Labels model or a custom adapter.
You can’t delete a project version if it is running or if it is training. To check the status of a project version, use the Status field returned from DescribeProjectVersions. To stop a project version call StopProjectVersion. If the project version is training, wait until it finishes.
This operation requires permissions to perform the
rekognition:DeleteProjectVersion
action.See
AWSRekognitionDeleteProjectVersionRequest
See
AWSRekognitionDeleteProjectVersionResponse
Declaration
Objective-C
- (void)deleteProjectVersion: (nonnull AWSRekognitionDeleteProjectVersionRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionDeleteProjectVersionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func deleteProjectVersion(_ request: AWSRekognitionDeleteProjectVersionRequest) async throws -> AWSRekognitionDeleteProjectVersionResponse
Parameters
request
A container for the necessary parameters to execute the DeleteProjectVersion service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Deletes the stream processor identified by
Name
. You assign the value forName
when you create the stream processor with CreateStreamProcessor. You might not be able to use the same name for a stream processor for a few seconds after callingDeleteStreamProcessor
.See
AWSRekognitionDeleteStreamProcessorRequest
See
AWSRekognitionDeleteStreamProcessorResponse
Declaration
Objective-C
- (id)deleteStreamProcessor: (nonnull AWSRekognitionDeleteStreamProcessorRequest *)request;
Swift
func deleteStreamProcessor(_ request: AWSRekognitionDeleteStreamProcessorRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DeleteStreamProcessor service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDeleteStreamProcessorResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Deletes the stream processor identified by
Name
. You assign the value forName
when you create the stream processor with CreateStreamProcessor. You might not be able to use the same name for a stream processor for a few seconds after callingDeleteStreamProcessor
.See
AWSRekognitionDeleteStreamProcessorRequest
See
AWSRekognitionDeleteStreamProcessorResponse
Declaration
Objective-C
- (void)deleteStreamProcessor: (nonnull AWSRekognitionDeleteStreamProcessorRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionDeleteStreamProcessorResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func deleteStreamProcessor(_ request: AWSRekognitionDeleteStreamProcessorRequest) async throws -> AWSRekognitionDeleteStreamProcessorResponse
Parameters
request
A container for the necessary parameters to execute the DeleteStreamProcessor service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Deletes the specified UserID within the collection. Faces that are associated with the UserID are disassociated from the UserID before deleting the specified UserID. If the specified
Collection
orUserID
is already deleted or not found, aResourceNotFoundException
will be thrown. If the action is successful with a 200 response, an empty HTTP body is returned.See
AWSRekognitionDeleteUserRequest
See
AWSRekognitionDeleteUserResponse
Declaration
Objective-C
- (id)deleteUser:(nonnull AWSRekognitionDeleteUserRequest *)request;
Swift
func deleteUser(_ request: AWSRekognitionDeleteUserRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DeleteUser service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDeleteUserResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorConflict
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
. -
Deletes the specified UserID within the collection. Faces that are associated with the UserID are disassociated from the UserID before deleting the specified UserID. If the specified
Collection
orUserID
is already deleted or not found, aResourceNotFoundException
will be thrown. If the action is successful with a 200 response, an empty HTTP body is returned.See
AWSRekognitionDeleteUserRequest
See
AWSRekognitionDeleteUserResponse
Declaration
Objective-C
- (void)deleteUser:(nonnull AWSRekognitionDeleteUserRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionDeleteUserResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func deleteUser(_ request: AWSRekognitionDeleteUserRequest) async throws -> AWSRekognitionDeleteUserResponse
Parameters
request
A container for the necessary parameters to execute the DeleteUser service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorConflict
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
. -
Describes the specified collection. You can use
DescribeCollection
to get information, such as the number of faces indexed into a collection and the version of the model used by the collection for face detection.For more information, see Describing a Collection in the Amazon Rekognition Developer Guide.
See
AWSRekognitionDescribeCollectionRequest
See
AWSRekognitionDescribeCollectionResponse
Declaration
Objective-C
- (id)describeCollection: (nonnull AWSRekognitionDescribeCollectionRequest *)request;
Swift
func describeCollection(_ request: AWSRekognitionDescribeCollectionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DescribeCollection service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDescribeCollectionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
. -
Describes the specified collection. You can use
DescribeCollection
to get information, such as the number of faces indexed into a collection and the version of the model used by the collection for face detection.For more information, see Describing a Collection in the Amazon Rekognition Developer Guide.
See
AWSRekognitionDescribeCollectionRequest
See
AWSRekognitionDescribeCollectionResponse
Declaration
Objective-C
- (void) describeCollection: (nonnull AWSRekognitionDescribeCollectionRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionDescribeCollectionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func describeCollection(_ request: AWSRekognitionDescribeCollectionRequest) async throws -> AWSRekognitionDescribeCollectionResponse
Parameters
request
A container for the necessary parameters to execute the DescribeCollection service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
. -
This operation applies only to Amazon Rekognition Custom Labels.
Describes an Amazon Rekognition Custom Labels dataset. You can get information such as the current status of a dataset and statistics about the images and labels in a dataset.
This operation requires permissions to perform the
rekognition:DescribeDataset
action.See
AWSRekognitionDescribeDatasetRequest
See
AWSRekognitionDescribeDatasetResponse
Declaration
Objective-C
- (id)describeDataset:(nonnull AWSRekognitionDescribeDatasetRequest *)request;
Swift
func describeDataset(_ request: AWSRekognitionDescribeDatasetRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DescribeDataset service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDescribeDatasetResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorResourceNotFound
. -
This operation applies only to Amazon Rekognition Custom Labels.
Describes an Amazon Rekognition Custom Labels dataset. You can get information such as the current status of a dataset and statistics about the images and labels in a dataset.
This operation requires permissions to perform the
rekognition:DescribeDataset
action.See
AWSRekognitionDescribeDatasetRequest
See
AWSRekognitionDescribeDatasetResponse
Declaration
Objective-C
- (void)describeDataset:(nonnull AWSRekognitionDescribeDatasetRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionDescribeDatasetResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func describeDataset(_ request: AWSRekognitionDescribeDatasetRequest) async throws -> AWSRekognitionDescribeDatasetResponse
Parameters
request
A container for the necessary parameters to execute the DescribeDataset service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorResourceNotFound
. -
Lists and describes the versions of an Amazon Rekognition project. You can specify up to 10 model or adapter versions in
ProjectVersionArns
. If you don’t specify a value, descriptions for all model/adapter versions in the project are returned.This operation requires permissions to perform the
rekognition:DescribeProjectVersions
action.See
AWSRekognitionDescribeProjectVersionsRequest
See
AWSRekognitionDescribeProjectVersionsResponse
Declaration
Objective-C
- (id)describeProjectVersions: (nonnull AWSRekognitionDescribeProjectVersionsRequest *)request;
Swift
func describeProjectVersions(_ request: AWSRekognitionDescribeProjectVersionsRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DescribeProjectVersions service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDescribeProjectVersionsResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Lists and describes the versions of an Amazon Rekognition project. You can specify up to 10 model or adapter versions in
ProjectVersionArns
. If you don’t specify a value, descriptions for all model/adapter versions in the project are returned.This operation requires permissions to perform the
rekognition:DescribeProjectVersions
action.See
AWSRekognitionDescribeProjectVersionsRequest
See
AWSRekognitionDescribeProjectVersionsResponse
Declaration
Objective-C
- (void)describeProjectVersions: (nonnull AWSRekognitionDescribeProjectVersionsRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionDescribeProjectVersionsResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func describeProjectVersions(_ request: AWSRekognitionDescribeProjectVersionsRequest) async throws -> AWSRekognitionDescribeProjectVersionsResponse
Parameters
request
A container for the necessary parameters to execute the DescribeProjectVersions service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Gets information about your Rekognition projects.
This operation requires permissions to perform the
rekognition:DescribeProjects
action.See
AWSRekognitionDescribeProjectsRequest
See
AWSRekognitionDescribeProjectsResponse
Declaration
Objective-C
- (id)describeProjects:(nonnull AWSRekognitionDescribeProjectsRequest *)request;
Swift
func describeProjects(_ request: AWSRekognitionDescribeProjectsRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DescribeProjects service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDescribeProjectsResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Gets information about your Rekognition projects.
This operation requires permissions to perform the
rekognition:DescribeProjects
action.See
AWSRekognitionDescribeProjectsRequest
See
AWSRekognitionDescribeProjectsResponse
Declaration
Objective-C
- (void)describeProjects: (nonnull AWSRekognitionDescribeProjectsRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionDescribeProjectsResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func describeProjects(_ request: AWSRekognitionDescribeProjectsRequest) async throws -> AWSRekognitionDescribeProjectsResponse
Parameters
request
A container for the necessary parameters to execute the DescribeProjects service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Provides information about a stream processor created by CreateStreamProcessor. You can get information about the input and output streams, the input parameters for the face recognition being performed, and the current status of the stream processor.
See
AWSRekognitionDescribeStreamProcessorRequest
See
AWSRekognitionDescribeStreamProcessorResponse
Declaration
Objective-C
- (id)describeStreamProcessor: (nonnull AWSRekognitionDescribeStreamProcessorRequest *)request;
Swift
func describeStreamProcessor(_ request: AWSRekognitionDescribeStreamProcessorRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DescribeStreamProcessor service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDescribeStreamProcessorResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Provides information about a stream processor created by CreateStreamProcessor. You can get information about the input and output streams, the input parameters for the face recognition being performed, and the current status of the stream processor.
See
AWSRekognitionDescribeStreamProcessorRequest
See
AWSRekognitionDescribeStreamProcessorResponse
Declaration
Objective-C
- (void)describeStreamProcessor: (nonnull AWSRekognitionDescribeStreamProcessorRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionDescribeStreamProcessorResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func describeStreamProcessor(_ request: AWSRekognitionDescribeStreamProcessorRequest) async throws -> AWSRekognitionDescribeStreamProcessorResponse
Parameters
request
A container for the necessary parameters to execute the DescribeStreamProcessor service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
This operation applies only to Amazon Rekognition Custom Labels.
Detects custom labels in a supplied image by using an Amazon Rekognition Custom Labels model.
You specify which version of a model version to use by using the
ProjectVersionArn
input parameter.You pass the input image 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 each object that the model version detects on an image, the API returns a (
CustomLabel
) object in an array (CustomLabels
). EachCustomLabel
object provides the label name (Name
), the level of confidence that the image contains the object (Confidence
), and object location information, if it exists, for the label on the image (Geometry
). Note that for theDetectCustomLabelsLabels
operation,Polygons
are not returned in theGeometry
section of the response.To filter labels that are returned, specify a value for
MinConfidence
.DetectCustomLabelsLabels
only returns labels with a confidence that’s higher than the specified value. The value ofMinConfidence
maps to the assumed threshold values created during training. For more information, see Assumed threshold in the Amazon Rekognition Custom Labels Developer Guide. Amazon Rekognition Custom Labels metrics expresses an assumed threshold as a floating point value between 0-1. The range ofMinConfidence
normalizes the threshold value to a percentage value (0-100). Confidence responses fromDetectCustomLabels
are also returned as a percentage. You can useMinConfidence
to change the precision and recall or your model. For more information, see Analyzing an image in the Amazon Rekognition Custom Labels Developer Guide.If you don’t specify a value for
MinConfidence
,DetectCustomLabels
returns labels based on the assumed threshold of each label.This is a stateless API operation. That is, the operation does not persist any data.
This operation requires permissions to perform the
rekognition:DetectCustomLabels
action.For more information, see Analyzing an image in the Amazon Rekognition Custom Labels Developer Guide.
See
AWSRekognitionDetectCustomLabelsRequest
See
AWSRekognitionDetectCustomLabelsResponse
Declaration
Objective-C
- (id)detectCustomLabels: (nonnull AWSRekognitionDetectCustomLabelsRequest *)request;
Swift
func detectCustomLabels(_ request: AWSRekognitionDetectCustomLabelsRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DetectCustomLabels service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDetectCustomLabelsResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceNotReady
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidImageFormat
. -
This operation applies only to Amazon Rekognition Custom Labels.
Detects custom labels in a supplied image by using an Amazon Rekognition Custom Labels model.
You specify which version of a model version to use by using the
ProjectVersionArn
input parameter.You pass the input image 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 each object that the model version detects on an image, the API returns a (
CustomLabel
) object in an array (CustomLabels
). EachCustomLabel
object provides the label name (Name
), the level of confidence that the image contains the object (Confidence
), and object location information, if it exists, for the label on the image (Geometry
). Note that for theDetectCustomLabelsLabels
operation,Polygons
are not returned in theGeometry
section of the response.To filter labels that are returned, specify a value for
MinConfidence
.DetectCustomLabelsLabels
only returns labels with a confidence that’s higher than the specified value. The value ofMinConfidence
maps to the assumed threshold values created during training. For more information, see Assumed threshold in the Amazon Rekognition Custom Labels Developer Guide. Amazon Rekognition Custom Labels metrics expresses an assumed threshold as a floating point value between 0-1. The range ofMinConfidence
normalizes the threshold value to a percentage value (0-100). Confidence responses fromDetectCustomLabels
are also returned as a percentage. You can useMinConfidence
to change the precision and recall or your model. For more information, see Analyzing an image in the Amazon Rekognition Custom Labels Developer Guide.If you don’t specify a value for
MinConfidence
,DetectCustomLabels
returns labels based on the assumed threshold of each label.This is a stateless API operation. That is, the operation does not persist any data.
This operation requires permissions to perform the
rekognition:DetectCustomLabels
action.For more information, see Analyzing an image in the Amazon Rekognition Custom Labels Developer Guide.
See
AWSRekognitionDetectCustomLabelsRequest
See
AWSRekognitionDetectCustomLabelsResponse
Declaration
Objective-C
- (void) detectCustomLabels: (nonnull AWSRekognitionDetectCustomLabelsRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionDetectCustomLabelsResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func detectCustomLabels(_ request: AWSRekognitionDetectCustomLabelsRequest) async throws -> AWSRekognitionDetectCustomLabelsResponse
Parameters
request
A container for the necessary parameters to execute the DetectCustomLabels service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceNotReady
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidImageFormat
. -
Detects faces within an image that is provided as input.
DetectFaces
detects the 100 largest faces in the image. For each face detected, the operation returns face details. These details include a bounding box of the face, a confidence value (that the bounding box contains a face), and a fixed set of attributes such as facial landmarks (for example, coordinates of eye and mouth), pose, presence of facial occlusion, and so on.The face-detection algorithm is most effective on frontal faces. For non-frontal or obscured faces, the algorithm might not detect the faces or might detect faces with lower confidence.
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.
This is a stateless API operation. That is, the operation does not persist any data.
This operation requires permissions to perform the
rekognition:DetectFaces
action.See
AWSRekognitionDetectFacesRequest
See
AWSRekognitionDetectFacesResponse
Declaration
Objective-C
- (id)detectFaces:(nonnull AWSRekognitionDetectFacesRequest *)request;
Swift
func detectFaces(_ request: AWSRekognitionDetectFacesRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DetectFaces service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDetectFacesResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidImageFormat
. -
Detects faces within an image that is provided as input.
DetectFaces
detects the 100 largest faces in the image. For each face detected, the operation returns face details. These details include a bounding box of the face, a confidence value (that the bounding box contains a face), and a fixed set of attributes such as facial landmarks (for example, coordinates of eye and mouth), pose, presence of facial occlusion, and so on.The face-detection algorithm is most effective on frontal faces. For non-frontal or obscured faces, the algorithm might not detect the faces or might detect faces with lower confidence.
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.
This is a stateless API operation. That is, the operation does not persist any data.
This operation requires permissions to perform the
rekognition:DetectFaces
action.See
AWSRekognitionDetectFacesRequest
See
AWSRekognitionDetectFacesResponse
Declaration
Objective-C
- (void)detectFaces:(nonnull AWSRekognitionDetectFacesRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionDetectFacesResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func detectFaces(_ request: AWSRekognitionDetectFacesRequest) async throws -> AWSRekognitionDetectFacesResponse
Parameters
request
A container for the necessary parameters to execute the DetectFaces service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidImageFormat
. -
Detects instances of real-world entities within an image (JPEG or PNG) provided as input. This includes objects like flower, tree, and table; events like wedding, graduation, and birthday party; and concepts like landscape, evening, and nature.
For an example, see Analyzing images stored in an Amazon S3 bucket in the Amazon Rekognition Developer Guide.
You pass the input image 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.
Optional Parameters
You can specify one or both of the
GENERAL_LABELS
andIMAGE_PROPERTIES
feature types when calling the DetectLabels API. IncludingGENERAL_LABELS
will ensure the response includes the labels detected in the input image, while includingIMAGE_PROPERTIES
will ensure the response includes information about the image quality and color.When using
GENERAL_LABELS
and/orIMAGE_PROPERTIES
you can provide filtering criteria to the Settings parameter. You can filter with sets of individual labels or with label categories. You can specify inclusive filters, exclusive filters, or a combination of inclusive and exclusive filters. For more information on filtering see Detecting Labels in an Image.When getting labels, you can specify
MinConfidence
to control the confidence threshold for the labels returned. The default is 55%. You can also add theMaxLabels
parameter to limit the number of labels returned. The default and upper limit is 1000 labels. These arguments are only valid when supplying GENERAL_LABELS as a feature type.Response Elements
For each object, scene, and concept the API returns one or more labels. The API returns the following types of information about labels:
Name - The name of the detected label.
Confidence - The level of confidence in the label assigned to a detected object.
Parents - The ancestor labels for a detected label. DetectLabels returns a hierarchical taxonomy of detected labels. For example, a detected car might be assigned the label car. The label car has two parent labels: Vehicle (its parent) and Transportation (its grandparent). The response includes the all ancestors for a label, where every ancestor is a unique label. In the previous example, Car, Vehicle, and Transportation are returned as unique labels in the response.
Aliases - Possible Aliases for the label.
Categories - The label categories that the detected label belongs to.
BoundingBox — Bounding boxes are described for all instances of detected common object labels, returned in an array of Instance objects. An Instance object contains a BoundingBox object, describing the location of the label on the input image. It also includes the confidence for the accuracy of the detected bounding box.
The API returns the following information regarding the image, as part of the ImageProperties structure:
Quality - Information about the Sharpness, Brightness, and Contrast of the input image, scored between 0 to 100. Image quality is returned for the entire image, as well as the background and the foreground.
Dominant Color - An array of the dominant colors in the image.
Foreground - Information about the sharpness, brightness, and dominant colors of the input image’s foreground.
Background - Information about the sharpness, brightness, and dominant colors of the input image’s background.
The list of returned labels will include at least one label for every detected object, along with information about that label. In the following example, suppose the input image has a lighthouse, the sea, and a rock. The response includes all three labels, one for each object, as well as the confidence in the label:
{Name: lighthouse, Confidence: 98.4629}
{Name: rock,Confidence: 79.2097}
{Name: sea,Confidence: 75.061}
The list of labels can include multiple labels for the same object. For example, if the input image shows a flower (for example, a tulip), the operation might return the following three labels.
{Name: flower,Confidence: 99.0562}
{Name: plant,Confidence: 99.0562}
{Name: tulip,Confidence: 99.0562}
In this example, the detection algorithm more precisely identifies the flower as a tulip.
If the object detected is a person, the operation doesn’t provide the same facial details that the DetectFaces operation provides.
This is a stateless API operation that doesn’t return any data.
This operation requires permissions to perform the
rekognition:DetectLabels
action.See
AWSRekognitionDetectLabelsRequest
See
AWSRekognitionDetectLabelsResponse
Declaration
Objective-C
- (id)detectLabels:(nonnull AWSRekognitionDetectLabelsRequest *)request;
Swift
func detectLabels(_ request: AWSRekognitionDetectLabelsRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DetectLabels service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDetectLabelsResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidImageFormat
. -
Detects instances of real-world entities within an image (JPEG or PNG) provided as input. This includes objects like flower, tree, and table; events like wedding, graduation, and birthday party; and concepts like landscape, evening, and nature.
For an example, see Analyzing images stored in an Amazon S3 bucket in the Amazon Rekognition Developer Guide.
You pass the input image 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.
Optional Parameters
You can specify one or both of the
GENERAL_LABELS
andIMAGE_PROPERTIES
feature types when calling the DetectLabels API. IncludingGENERAL_LABELS
will ensure the response includes the labels detected in the input image, while includingIMAGE_PROPERTIES
will ensure the response includes information about the image quality and color.When using
GENERAL_LABELS
and/orIMAGE_PROPERTIES
you can provide filtering criteria to the Settings parameter. You can filter with sets of individual labels or with label categories. You can specify inclusive filters, exclusive filters, or a combination of inclusive and exclusive filters. For more information on filtering see Detecting Labels in an Image.When getting labels, you can specify
MinConfidence
to control the confidence threshold for the labels returned. The default is 55%. You can also add theMaxLabels
parameter to limit the number of labels returned. The default and upper limit is 1000 labels. These arguments are only valid when supplying GENERAL_LABELS as a feature type.Response Elements
For each object, scene, and concept the API returns one or more labels. The API returns the following types of information about labels:
Name - The name of the detected label.
Confidence - The level of confidence in the label assigned to a detected object.
Parents - The ancestor labels for a detected label. DetectLabels returns a hierarchical taxonomy of detected labels. For example, a detected car might be assigned the label car. The label car has two parent labels: Vehicle (its parent) and Transportation (its grandparent). The response includes the all ancestors for a label, where every ancestor is a unique label. In the previous example, Car, Vehicle, and Transportation are returned as unique labels in the response.
Aliases - Possible Aliases for the label.
Categories - The label categories that the detected label belongs to.
BoundingBox — Bounding boxes are described for all instances of detected common object labels, returned in an array of Instance objects. An Instance object contains a BoundingBox object, describing the location of the label on the input image. It also includes the confidence for the accuracy of the detected bounding box.
The API returns the following information regarding the image, as part of the ImageProperties structure:
Quality - Information about the Sharpness, Brightness, and Contrast of the input image, scored between 0 to 100. Image quality is returned for the entire image, as well as the background and the foreground.
Dominant Color - An array of the dominant colors in the image.
Foreground - Information about the sharpness, brightness, and dominant colors of the input image’s foreground.
Background - Information about the sharpness, brightness, and dominant colors of the input image’s background.
The list of returned labels will include at least one label for every detected object, along with information about that label. In the following example, suppose the input image has a lighthouse, the sea, and a rock. The response includes all three labels, one for each object, as well as the confidence in the label:
{Name: lighthouse, Confidence: 98.4629}
{Name: rock,Confidence: 79.2097}
{Name: sea,Confidence: 75.061}
The list of labels can include multiple labels for the same object. For example, if the input image shows a flower (for example, a tulip), the operation might return the following three labels.
{Name: flower,Confidence: 99.0562}
{Name: plant,Confidence: 99.0562}
{Name: tulip,Confidence: 99.0562}
In this example, the detection algorithm more precisely identifies the flower as a tulip.
If the object detected is a person, the operation doesn’t provide the same facial details that the DetectFaces operation provides.
This is a stateless API operation that doesn’t return any data.
This operation requires permissions to perform the
rekognition:DetectLabels
action.See
AWSRekognitionDetectLabelsRequest
See
AWSRekognitionDetectLabelsResponse
Declaration
Objective-C
- (void)detectLabels:(nonnull AWSRekognitionDetectLabelsRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionDetectLabelsResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func detectLabels(_ request: AWSRekognitionDetectLabelsRequest) async throws -> AWSRekognitionDetectLabelsResponse
Parameters
request
A container for the necessary parameters to execute the DetectLabels service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidImageFormat
. -
Detects unsafe content in a specified JPEG or PNG format image. Use
DetectModerationLabels
to moderate images depending on your requirements. For example, you might want to filter images that contain nudity, but not images containing suggestive content.To filter images, use the labels returned by
DetectModerationLabels
to determine which types of content are appropriate.For information about moderation labels, see Detecting Unsafe Content in the Amazon Rekognition Developer Guide.
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.
You can specify an adapter to use when retrieving label predictions by providing a
ProjectVersionArn
to theProjectVersion
argument.See
AWSRekognitionDetectModerationLabelsRequest
See
AWSRekognitionDetectModerationLabelsResponse
Declaration
Objective-C
- (id)detectModerationLabels: (nonnull AWSRekognitionDetectModerationLabelsRequest *)request;
Swift
func detectModerationLabels(_ request: AWSRekognitionDetectModerationLabelsRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DetectModerationLabels service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDetectModerationLabelsResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidImageFormat
,AWSRekognitionErrorHumanLoopQuotaExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceNotReady
. -
Detects unsafe content in a specified JPEG or PNG format image. Use
DetectModerationLabels
to moderate images depending on your requirements. For example, you might want to filter images that contain nudity, but not images containing suggestive content.To filter images, use the labels returned by
DetectModerationLabels
to determine which types of content are appropriate.For information about moderation labels, see Detecting Unsafe Content in the Amazon Rekognition Developer Guide.
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.
You can specify an adapter to use when retrieving label predictions by providing a
ProjectVersionArn
to theProjectVersion
argument.See
AWSRekognitionDetectModerationLabelsRequest
See
AWSRekognitionDetectModerationLabelsResponse
Declaration
Objective-C
- (void)detectModerationLabels: (nonnull AWSRekognitionDetectModerationLabelsRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionDetectModerationLabelsResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func detectModerationLabels(_ request: AWSRekognitionDetectModerationLabelsRequest) async throws -> AWSRekognitionDetectModerationLabelsResponse
Parameters
request
A container for the necessary parameters to execute the DetectModerationLabels service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidImageFormat
,AWSRekognitionErrorHumanLoopQuotaExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceNotReady
. -
Detects Personal Protective Equipment (PPE) worn by people detected in an image. Amazon Rekognition can detect the following types of PPE.
Face cover
Hand cover
Head cover
You pass the input image as base64-encoded image bytes or as a reference to an image in an Amazon S3 bucket. The image must be either a PNG or JPG formatted file.
DetectProtectiveEquipment
detects PPE worn by up to 15 persons detected in an image.For each person detected in the image the API returns an array of body parts (face, head, left-hand, right-hand). For each body part, an array of detected items of PPE is returned, including an indicator of whether or not the PPE covers the body part. The API returns the confidence it has in each detection (person, PPE, body part and body part coverage). It also returns a bounding box (BoundingBox) for each detected person and each detected item of PPE.
You can optionally request a summary of detected PPE items with the
SummarizationAttributes
input parameter. The summary provides the following information.The persons detected as wearing all of the types of PPE that you specify.
The persons detected as not wearing all of the types PPE that you specify.
The persons detected where PPE adornment could not be determined.
This is a stateless API operation. That is, the operation does not persist any data.
This operation requires permissions to perform the
rekognition:DetectProtectiveEquipment
action.See
AWSRekognitionDetectProtectiveEquipmentRequest
See
AWSRekognitionDetectProtectiveEquipmentResponse
Declaration
Objective-C
- (id)detectProtectiveEquipment: (nonnull AWSRekognitionDetectProtectiveEquipmentRequest *)request;
Swift
func detectProtectiveEquipment(_ request: AWSRekognitionDetectProtectiveEquipmentRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DetectProtectiveEquipment service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDetectProtectiveEquipmentResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidImageFormat
. -
Detects Personal Protective Equipment (PPE) worn by people detected in an image. Amazon Rekognition can detect the following types of PPE.
Face cover
Hand cover
Head cover
You pass the input image as base64-encoded image bytes or as a reference to an image in an Amazon S3 bucket. The image must be either a PNG or JPG formatted file.
DetectProtectiveEquipment
detects PPE worn by up to 15 persons detected in an image.For each person detected in the image the API returns an array of body parts (face, head, left-hand, right-hand). For each body part, an array of detected items of PPE is returned, including an indicator of whether or not the PPE covers the body part. The API returns the confidence it has in each detection (person, PPE, body part and body part coverage). It also returns a bounding box (BoundingBox) for each detected person and each detected item of PPE.
You can optionally request a summary of detected PPE items with the
SummarizationAttributes
input parameter. The summary provides the following information.The persons detected as wearing all of the types of PPE that you specify.
The persons detected as not wearing all of the types PPE that you specify.
The persons detected where PPE adornment could not be determined.
This is a stateless API operation. That is, the operation does not persist any data.
This operation requires permissions to perform the
rekognition:DetectProtectiveEquipment
action.See
AWSRekognitionDetectProtectiveEquipmentRequest
See
AWSRekognitionDetectProtectiveEquipmentResponse
Declaration
Objective-C
- (void) detectProtectiveEquipment: (nonnull AWSRekognitionDetectProtectiveEquipmentRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionDetectProtectiveEquipmentResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func detectProtectiveEquipment(_ request: AWSRekognitionDetectProtectiveEquipmentRequest) async throws -> AWSRekognitionDetectProtectiveEquipmentResponse
Parameters
request
A container for the necessary parameters to execute the DetectProtectiveEquipment service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidImageFormat
. -
Detects text in the input image and converts it into machine-readable text.
Pass the input image 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, you must pass it as a reference to an image in an Amazon S3 bucket. For the AWS CLI, passing image bytes is not supported. The image must be either a .png or .jpeg formatted file.
The
DetectText
operation returns text in an array of TextDetection elements,TextDetections
. EachTextDetection
element provides information about a single word or line of text that was detected in the image.A word is one or more script characters that are not separated by spaces.
DetectText
can detect up to 100 words in an image.A line is a string of equally spaced words. A line isn’t necessarily a complete sentence. For example, a driver’s license number is detected as a line. A line ends when there is no aligned text after it. Also, a line ends when there is a large gap between words, relative to the length of the words. This means, depending on the gap between words, Amazon Rekognition may detect multiple lines in text aligned in the same direction. Periods don’t represent the end of a line. If a sentence spans multiple lines, the
DetectText
operation returns multiple lines.To determine whether a
TextDetection
element is a line of text or a word, use theTextDetection
objectType
field.To be detected, text must be within +/- 90 degrees orientation of the horizontal axis.
For more information, see Detecting text in the Amazon Rekognition Developer Guide.
See
AWSRekognitionDetectTextRequest
See
AWSRekognitionDetectTextResponse
Declaration
Objective-C
- (id)detectText:(nonnull AWSRekognitionDetectTextRequest *)request;
Swift
func detectText(_ request: AWSRekognitionDetectTextRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DetectText service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDetectTextResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidImageFormat
. -
Detects text in the input image and converts it into machine-readable text.
Pass the input image 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, you must pass it as a reference to an image in an Amazon S3 bucket. For the AWS CLI, passing image bytes is not supported. The image must be either a .png or .jpeg formatted file.
The
DetectText
operation returns text in an array of TextDetection elements,TextDetections
. EachTextDetection
element provides information about a single word or line of text that was detected in the image.A word is one or more script characters that are not separated by spaces.
DetectText
can detect up to 100 words in an image.A line is a string of equally spaced words. A line isn’t necessarily a complete sentence. For example, a driver’s license number is detected as a line. A line ends when there is no aligned text after it. Also, a line ends when there is a large gap between words, relative to the length of the words. This means, depending on the gap between words, Amazon Rekognition may detect multiple lines in text aligned in the same direction. Periods don’t represent the end of a line. If a sentence spans multiple lines, the
DetectText
operation returns multiple lines.To determine whether a
TextDetection
element is a line of text or a word, use theTextDetection
objectType
field.To be detected, text must be within +/- 90 degrees orientation of the horizontal axis.
For more information, see Detecting text in the Amazon Rekognition Developer Guide.
See
AWSRekognitionDetectTextRequest
See
AWSRekognitionDetectTextResponse
Declaration
Objective-C
- (void)detectText:(nonnull AWSRekognitionDetectTextRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionDetectTextResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func detectText(_ request: AWSRekognitionDetectTextRequest) async throws -> AWSRekognitionDetectTextResponse
Parameters
request
A container for the necessary parameters to execute the DetectText service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidImageFormat
. -
Removes the association between a
Face
supplied in an array ofFaceIds
and the User. If the User is not present already, then aResourceNotFound
exception is thrown. If successful, an array of faces that are disassociated from the User is returned. If a given face is already disassociated from the given UserID, it will be ignored and not be returned in the response. If a given face is already associated with a different User or not found in the collection it will be returned as part ofUnsuccessfulDisassociations
. You can remove 1 - 100 face IDs from a user at one time.See
AWSRekognitionDisassociateFacesRequest
See
AWSRekognitionDisassociateFacesResponse
Declaration
Objective-C
- (id)disassociateFaces: (nonnull AWSRekognitionDisassociateFacesRequest *)request;
Swift
func disassociateFaces(_ request: AWSRekognitionDisassociateFacesRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DisassociateFaces service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDisassociateFacesResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorConflict
. -
Removes the association between a
Face
supplied in an array ofFaceIds
and the User. If the User is not present already, then aResourceNotFound
exception is thrown. If successful, an array of faces that are disassociated from the User is returned. If a given face is already disassociated from the given UserID, it will be ignored and not be returned in the response. If a given face is already associated with a different User or not found in the collection it will be returned as part ofUnsuccessfulDisassociations
. You can remove 1 - 100 face IDs from a user at one time.See
AWSRekognitionDisassociateFacesRequest
See
AWSRekognitionDisassociateFacesResponse
Declaration
Objective-C
- (void) disassociateFaces:(nonnull AWSRekognitionDisassociateFacesRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionDisassociateFacesResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func disassociateFaces(_ request: AWSRekognitionDisassociateFacesRequest) async throws -> AWSRekognitionDisassociateFacesResponse
Parameters
request
A container for the necessary parameters to execute the DisassociateFaces service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorConflict
. -
This operation applies only to Amazon Rekognition Custom Labels.
Distributes the entries (images) in a training dataset across the training dataset and the test dataset for a project.
DistributeDatasetEntries
moves 20% of the training dataset images to the test dataset. An entry is a JSON Line that describes an image.You supply the Amazon Resource Names (ARN) of a project’s training dataset and test dataset. The training dataset must contain the images that you want to split. The test dataset must be empty. The datasets must belong to the same project. To create training and test datasets for a project, call CreateDataset.
Distributing a dataset takes a while to complete. To check the status call
DescribeDataset
. The operation is complete when theStatus
field for the training dataset and the test dataset isUPDATE_COMPLETE
. If the dataset split fails, the value ofStatus
isUPDATE_FAILED
.This operation requires permissions to perform the
rekognition:DistributeDatasetEntries
action.See
AWSRekognitionDistributeDatasetEntriesRequest
See
AWSRekognitionDistributeDatasetEntriesResponse
Declaration
Objective-C
- (id)distributeDatasetEntries: (nonnull AWSRekognitionDistributeDatasetEntriesRequest *)request;
Swift
func distributeDatasetEntries(_ request: AWSRekognitionDistributeDatasetEntriesRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the DistributeDatasetEntries service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionDistributeDatasetEntriesResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotReady
. -
This operation applies only to Amazon Rekognition Custom Labels.
Distributes the entries (images) in a training dataset across the training dataset and the test dataset for a project.
DistributeDatasetEntries
moves 20% of the training dataset images to the test dataset. An entry is a JSON Line that describes an image.You supply the Amazon Resource Names (ARN) of a project’s training dataset and test dataset. The training dataset must contain the images that you want to split. The test dataset must be empty. The datasets must belong to the same project. To create training and test datasets for a project, call CreateDataset.
Distributing a dataset takes a while to complete. To check the status call
DescribeDataset
. The operation is complete when theStatus
field for the training dataset and the test dataset isUPDATE_COMPLETE
. If the dataset split fails, the value ofStatus
isUPDATE_FAILED
.This operation requires permissions to perform the
rekognition:DistributeDatasetEntries
action.See
AWSRekognitionDistributeDatasetEntriesRequest
See
AWSRekognitionDistributeDatasetEntriesResponse
Declaration
Objective-C
- (void) distributeDatasetEntries: (nonnull AWSRekognitionDistributeDatasetEntriesRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionDistributeDatasetEntriesResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func distributeDatasetEntries(_ request: AWSRekognitionDistributeDatasetEntriesRequest) async throws -> AWSRekognitionDistributeDatasetEntriesResponse
Parameters
request
A container for the necessary parameters to execute the DistributeDatasetEntries service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotReady
. -
Gets the name and additional information about a celebrity based on their Amazon Rekognition ID. The additional information is returned as an array of URLs. If there is no additional information about the celebrity, this list is empty.
For more information, see Getting information about a celebrity in the Amazon Rekognition Developer Guide.
This operation requires permissions to perform the
rekognition:GetCelebrityInfo
action.See
AWSRekognitionGetCelebrityInfoRequest
See
AWSRekognitionGetCelebrityInfoResponse
Declaration
Objective-C
- (id)getCelebrityInfo:(nonnull AWSRekognitionGetCelebrityInfoRequest *)request;
Swift
func getCelebrityInfo(_ request: AWSRekognitionGetCelebrityInfoRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the GetCelebrityInfo service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionGetCelebrityInfoResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
. -
Gets the name and additional information about a celebrity based on their Amazon Rekognition ID. The additional information is returned as an array of URLs. If there is no additional information about the celebrity, this list is empty.
For more information, see Getting information about a celebrity in the Amazon Rekognition Developer Guide.
This operation requires permissions to perform the
rekognition:GetCelebrityInfo
action.See
AWSRekognitionGetCelebrityInfoRequest
See
AWSRekognitionGetCelebrityInfoResponse
Declaration
Objective-C
- (void)getCelebrityInfo: (nonnull AWSRekognitionGetCelebrityInfoRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionGetCelebrityInfoResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func celebrityInfo(_ request: AWSRekognitionGetCelebrityInfoRequest) async throws -> AWSRekognitionGetCelebrityInfoResponse
Parameters
request
A container for the necessary parameters to execute the GetCelebrityInfo service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
. -
Gets the celebrity recognition results for a Amazon Rekognition Video analysis started by StartCelebrityRecognition.
Celebrity recognition in a video is an asynchronous operation. Analysis is started by a call to StartCelebrityRecognition which returns a job identifier (
JobId
).When the celebrity recognition operation finishes, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call to
StartCelebrityRecognition
. To get the results of the celebrity recognition analysis, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. If so, callGetCelebrityDetection
and pass the job identifier (JobId
) from the initial call toStartCelebrityDetection
.For more information, see Working With Stored Videos in the Amazon Rekognition Developer Guide.
GetCelebrityRecognition
returns detected celebrities and the time(s) they are detected in an array (Celebrities
) of CelebrityRecognition objects. EachCelebrityRecognition
contains information about the celebrity in a CelebrityDetail object and the time,Timestamp
, the celebrity was detected. This CelebrityDetail object stores information about the detected celebrity’s face attributes, a face bounding box, known gender, the celebrity’s name, and a confidence estimate.GetCelebrityRecognition
only returns the default facial attributes (BoundingBox
,Confidence
,Landmarks
,Pose
, andQuality
). TheBoundingBox
field only applies to the detected face instance. The other facial attributes listed in theFace
object of the following response syntax are not returned. For more information, see FaceDetail in the Amazon Rekognition Developer Guide.By default, the
Celebrities
array is sorted by time (milliseconds from the start of the video). You can also sort the array by celebrity by specifying the valueID
in theSortBy
input parameter.The
CelebrityDetail
object includes the celebrity identifer and additional information urls. If you don’t store the additional information urls, you can get them later by calling GetCelebrityInfo with the celebrity identifer.No information is returned for faces not recognized as celebrities.
Use MaxResults parameter to limit the number of labels returned. If there are more results than specified in
MaxResults
, the value ofNextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, callGetCelebrityDetection
and populate theNextToken
request parameter with the token value returned from the previous call toGetCelebrityRecognition
.See
AWSRekognitionGetCelebrityRecognitionRequest
See
AWSRekognitionGetCelebrityRecognitionResponse
Declaration
Objective-C
- (id)getCelebrityRecognition: (nonnull AWSRekognitionGetCelebrityRecognitionRequest *)request;
Swift
func getCelebrityRecognition(_ request: AWSRekognitionGetCelebrityRecognitionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the GetCelebrityRecognition service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionGetCelebrityRecognitionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Gets the celebrity recognition results for a Amazon Rekognition Video analysis started by StartCelebrityRecognition.
Celebrity recognition in a video is an asynchronous operation. Analysis is started by a call to StartCelebrityRecognition which returns a job identifier (
JobId
).When the celebrity recognition operation finishes, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call to
StartCelebrityRecognition
. To get the results of the celebrity recognition analysis, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. If so, callGetCelebrityDetection
and pass the job identifier (JobId
) from the initial call toStartCelebrityDetection
.For more information, see Working With Stored Videos in the Amazon Rekognition Developer Guide.
GetCelebrityRecognition
returns detected celebrities and the time(s) they are detected in an array (Celebrities
) of CelebrityRecognition objects. EachCelebrityRecognition
contains information about the celebrity in a CelebrityDetail object and the time,Timestamp
, the celebrity was detected. This CelebrityDetail object stores information about the detected celebrity’s face attributes, a face bounding box, known gender, the celebrity’s name, and a confidence estimate.GetCelebrityRecognition
only returns the default facial attributes (BoundingBox
,Confidence
,Landmarks
,Pose
, andQuality
). TheBoundingBox
field only applies to the detected face instance. The other facial attributes listed in theFace
object of the following response syntax are not returned. For more information, see FaceDetail in the Amazon Rekognition Developer Guide.By default, the
Celebrities
array is sorted by time (milliseconds from the start of the video). You can also sort the array by celebrity by specifying the valueID
in theSortBy
input parameter.The
CelebrityDetail
object includes the celebrity identifer and additional information urls. If you don’t store the additional information urls, you can get them later by calling GetCelebrityInfo with the celebrity identifer.No information is returned for faces not recognized as celebrities.
Use MaxResults parameter to limit the number of labels returned. If there are more results than specified in
MaxResults
, the value ofNextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, callGetCelebrityDetection
and populate theNextToken
request parameter with the token value returned from the previous call toGetCelebrityRecognition
.See
AWSRekognitionGetCelebrityRecognitionRequest
See
AWSRekognitionGetCelebrityRecognitionResponse
Declaration
Objective-C
- (void)getCelebrityRecognition: (nonnull AWSRekognitionGetCelebrityRecognitionRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionGetCelebrityRecognitionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func celebrityRecognition(_ request: AWSRekognitionGetCelebrityRecognitionRequest) async throws -> AWSRekognitionGetCelebrityRecognitionResponse
Parameters
request
A container for the necessary parameters to execute the GetCelebrityRecognition service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Gets the inappropriate, unwanted, or offensive content analysis results for a Amazon Rekognition Video analysis started by StartContentModeration. For a list of moderation labels in Amazon Rekognition, see Using the image and video moderation APIs.
Amazon Rekognition Video inappropriate or offensive content detection in a stored video is an asynchronous operation. You start analysis by calling StartContentModeration which returns a job identifier (
JobId
). When analysis finishes, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call toStartContentModeration
. To get the results of the content analysis, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. If so, callGetContentModeration
and pass the job identifier (JobId
) from the initial call toStartContentModeration
.For more information, see Working with Stored Videos in the Amazon Rekognition Devlopers Guide.
GetContentModeration
returns detected inappropriate, unwanted, or offensive content moderation labels, and the time they are detected, in an array,ModerationLabels
, of ContentModerationDetection objects.By default, the moderated labels are returned sorted by time, in milliseconds from the start of the video. You can also sort them by moderated label by specifying
NAME
for theSortBy
input parameter.Since video analysis can return a large number of results, use the
MaxResults
parameter to limit the number of labels returned in a single call toGetContentModeration
. If there are more results than specified inMaxResults
, the value ofNextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, callGetContentModeration
and populate theNextToken
request parameter with the value ofNextToken
returned from the previous call toGetContentModeration
.For more information, see moderating content in the Amazon Rekognition Developer Guide.
See
AWSRekognitionGetContentModerationRequest
See
AWSRekognitionGetContentModerationResponse
Declaration
Objective-C
- (id)getContentModeration: (nonnull AWSRekognitionGetContentModerationRequest *)request;
Swift
func getContentModeration(_ request: AWSRekognitionGetContentModerationRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the GetContentModeration service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionGetContentModerationResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Gets the inappropriate, unwanted, or offensive content analysis results for a Amazon Rekognition Video analysis started by StartContentModeration. For a list of moderation labels in Amazon Rekognition, see Using the image and video moderation APIs.
Amazon Rekognition Video inappropriate or offensive content detection in a stored video is an asynchronous operation. You start analysis by calling StartContentModeration which returns a job identifier (
JobId
). When analysis finishes, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call toStartContentModeration
. To get the results of the content analysis, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. If so, callGetContentModeration
and pass the job identifier (JobId
) from the initial call toStartContentModeration
.For more information, see Working with Stored Videos in the Amazon Rekognition Devlopers Guide.
GetContentModeration
returns detected inappropriate, unwanted, or offensive content moderation labels, and the time they are detected, in an array,ModerationLabels
, of ContentModerationDetection objects.By default, the moderated labels are returned sorted by time, in milliseconds from the start of the video. You can also sort them by moderated label by specifying
NAME
for theSortBy
input parameter.Since video analysis can return a large number of results, use the
MaxResults
parameter to limit the number of labels returned in a single call toGetContentModeration
. If there are more results than specified inMaxResults
, the value ofNextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, callGetContentModeration
and populate theNextToken
request parameter with the value ofNextToken
returned from the previous call toGetContentModeration
.For more information, see moderating content in the Amazon Rekognition Developer Guide.
See
AWSRekognitionGetContentModerationRequest
See
AWSRekognitionGetContentModerationResponse
Declaration
Objective-C
- (void)getContentModeration: (nonnull AWSRekognitionGetContentModerationRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionGetContentModerationResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func contentModeration(_ request: AWSRekognitionGetContentModerationRequest) async throws -> AWSRekognitionGetContentModerationResponse
Parameters
request
A container for the necessary parameters to execute the GetContentModeration service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Gets face detection results for a Amazon Rekognition Video analysis started by StartFaceDetection.
Face detection with Amazon Rekognition Video is an asynchronous operation. You start face detection by calling StartFaceDetection which returns a job identifier (
JobId
). When the face detection operation finishes, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call toStartFaceDetection
. To get the results of the face detection operation, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. If so, call GetFaceDetection and pass the job identifier (JobId
) from the initial call toStartFaceDetection
.GetFaceDetection
returns an array of detected faces (Faces
) sorted by the time the faces were detected.Use MaxResults parameter to limit the number of labels returned. If there are more results than specified in
MaxResults
, the value ofNextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, callGetFaceDetection
and populate theNextToken
request parameter with the token value returned from the previous call toGetFaceDetection
.Note that for the
GetFaceDetection
operation, the returned values forFaceOccluded
andEyeDirection
will always be “null”.See
AWSRekognitionGetFaceDetectionRequest
See
AWSRekognitionGetFaceDetectionResponse
Declaration
Objective-C
- (id)getFaceDetection:(nonnull AWSRekognitionGetFaceDetectionRequest *)request;
Swift
func getFaceDetection(_ request: AWSRekognitionGetFaceDetectionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the GetFaceDetection service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionGetFaceDetectionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Gets face detection results for a Amazon Rekognition Video analysis started by StartFaceDetection.
Face detection with Amazon Rekognition Video is an asynchronous operation. You start face detection by calling StartFaceDetection which returns a job identifier (
JobId
). When the face detection operation finishes, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call toStartFaceDetection
. To get the results of the face detection operation, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. If so, call GetFaceDetection and pass the job identifier (JobId
) from the initial call toStartFaceDetection
.GetFaceDetection
returns an array of detected faces (Faces
) sorted by the time the faces were detected.Use MaxResults parameter to limit the number of labels returned. If there are more results than specified in
MaxResults
, the value ofNextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, callGetFaceDetection
and populate theNextToken
request parameter with the token value returned from the previous call toGetFaceDetection
.Note that for the
GetFaceDetection
operation, the returned values forFaceOccluded
andEyeDirection
will always be “null”.See
AWSRekognitionGetFaceDetectionRequest
See
AWSRekognitionGetFaceDetectionResponse
Declaration
Objective-C
- (void)getFaceDetection: (nonnull AWSRekognitionGetFaceDetectionRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionGetFaceDetectionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func faceDetection(_ request: AWSRekognitionGetFaceDetectionRequest) async throws -> AWSRekognitionGetFaceDetectionResponse
Parameters
request
A container for the necessary parameters to execute the GetFaceDetection service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Retrieves the results of a specific Face Liveness session. It requires the
sessionId
as input, which was created usingCreateFaceLivenessSession
. Returns the corresponding Face Liveness confidence score, a reference image that includes a face bounding box, and audit images that also contain face bounding boxes. The Face Liveness confidence score ranges from 0 to 100.The number of audit images returned by
GetFaceLivenessSessionResults
is defined by theAuditImagesLimit
paramater when callingCreateFaceLivenessSession
. Reference images are always returned when possible.See
AWSRekognitionGetFaceLivenessSessionResultsRequest
See
AWSRekognitionGetFaceLivenessSessionResultsResponse
Declaration
Objective-C
- (id)getFaceLivenessSessionResults: (nonnull AWSRekognitionGetFaceLivenessSessionResultsRequest *)request;
Swift
func getFaceLivenessSessionResults(_ request: AWSRekognitionGetFaceLivenessSessionResultsRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the GetFaceLivenessSessionResults service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionGetFaceLivenessSessionResultsResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorSessionNotFound
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Retrieves the results of a specific Face Liveness session. It requires the
sessionId
as input, which was created usingCreateFaceLivenessSession
. Returns the corresponding Face Liveness confidence score, a reference image that includes a face bounding box, and audit images that also contain face bounding boxes. The Face Liveness confidence score ranges from 0 to 100.The number of audit images returned by
GetFaceLivenessSessionResults
is defined by theAuditImagesLimit
paramater when callingCreateFaceLivenessSession
. Reference images are always returned when possible.See
AWSRekognitionGetFaceLivenessSessionResultsRequest
See
AWSRekognitionGetFaceLivenessSessionResultsResponse
Declaration
Objective-C
- (void)getFaceLivenessSessionResults: (nonnull AWSRekognitionGetFaceLivenessSessionResultsRequest *) request completionHandler: (void (^_Nullable)( AWSRekognitionGetFaceLivenessSessionResultsResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func faceLivenessSessionResults(_ request: AWSRekognitionGetFaceLivenessSessionResultsRequest) async throws -> AWSRekognitionGetFaceLivenessSessionResultsResponse
Parameters
request
A container for the necessary parameters to execute the GetFaceLivenessSessionResults service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorSessionNotFound
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Gets the face search results for Amazon Rekognition Video face search started by StartFaceSearch. The search returns faces in a collection that match the faces of persons detected in a video. It also includes the time(s) that faces are matched in the video.
Face search in a video is an asynchronous operation. You start face search by calling to StartFaceSearch which returns a job identifier (
JobId
). When the search operation finishes, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call toStartFaceSearch
. To get the search results, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. If so, callGetFaceSearch
and pass the job identifier (JobId
) from the initial call toStartFaceSearch
.For more information, see Searching Faces in a Collection in the Amazon Rekognition Developer Guide.
The search results are retured in an array,
Persons
, of PersonMatch objects. EachPersonMatch
element contains details about the matching faces in the input collection, person information (facial attributes, bounding boxes, and person identifer) for the matched person, and the time the person was matched in the video.GetFaceSearch
only returns the default facial attributes (BoundingBox
,Confidence
,Landmarks
,Pose
, andQuality
). The other facial attributes listed in theFace
object of the following response syntax are not returned. For more information, see FaceDetail in the Amazon Rekognition Developer Guide.By default, the
Persons
array is sorted by the time, in milliseconds from the start of the video, persons are matched. You can also sort by persons by specifyingINDEX
for theSORTBY
input parameter.See
AWSRekognitionGetFaceSearchRequest
See
AWSRekognitionGetFaceSearchResponse
Declaration
Objective-C
- (id)getFaceSearch:(nonnull AWSRekognitionGetFaceSearchRequest *)request;
Swift
func getFaceSearch(_ request: AWSRekognitionGetFaceSearchRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the GetFaceSearch service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionGetFaceSearchResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Gets the face search results for Amazon Rekognition Video face search started by StartFaceSearch. The search returns faces in a collection that match the faces of persons detected in a video. It also includes the time(s) that faces are matched in the video.
Face search in a video is an asynchronous operation. You start face search by calling to StartFaceSearch which returns a job identifier (
JobId
). When the search operation finishes, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call toStartFaceSearch
. To get the search results, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. If so, callGetFaceSearch
and pass the job identifier (JobId
) from the initial call toStartFaceSearch
.For more information, see Searching Faces in a Collection in the Amazon Rekognition Developer Guide.
The search results are retured in an array,
Persons
, of PersonMatch objects. EachPersonMatch
element contains details about the matching faces in the input collection, person information (facial attributes, bounding boxes, and person identifer) for the matched person, and the time the person was matched in the video.GetFaceSearch
only returns the default facial attributes (BoundingBox
,Confidence
,Landmarks
,Pose
, andQuality
). The other facial attributes listed in theFace
object of the following response syntax are not returned. For more information, see FaceDetail in the Amazon Rekognition Developer Guide.By default, the
Persons
array is sorted by the time, in milliseconds from the start of the video, persons are matched. You can also sort by persons by specifyingINDEX
for theSORTBY
input parameter.See
AWSRekognitionGetFaceSearchRequest
See
AWSRekognitionGetFaceSearchResponse
Declaration
Objective-C
- (void)getFaceSearch:(nonnull AWSRekognitionGetFaceSearchRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionGetFaceSearchResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func faceSearch(_ request: AWSRekognitionGetFaceSearchRequest) async throws -> AWSRekognitionGetFaceSearchResponse
Parameters
request
A container for the necessary parameters to execute the GetFaceSearch service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Gets the label detection results of a Amazon Rekognition Video analysis started by StartLabelDetection.
The label detection operation is started by a call to StartLabelDetection which returns a job identifier (
JobId
). When the label detection operation finishes, Amazon Rekognition publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call toStartlabelDetection
.To get the results of the label detection operation, first check that the status value published to the Amazon SNS topic is
SUCCEEDED
. If so, call GetLabelDetection and pass the job identifier (JobId
) from the initial call toStartLabelDetection
.GetLabelDetection
returns an array of detected labels (Labels
) sorted by the time the labels were detected. You can also sort by the label name by specifyingNAME
for theSortBy
input parameter. If there is noNAME
specified, the default sort is by timestamp.You can select how results are aggregated by using the
AggregateBy
input parameter. The default aggregation method isTIMESTAMPS
. You can also aggregate bySEGMENTS
, which aggregates all instances of labels detected in a given segment.The returned Labels array may include the following attributes:
Name - The name of the detected label.
Confidence - The level of confidence in the label assigned to a detected object.
Parents - The ancestor labels for a detected label. GetLabelDetection returns a hierarchical taxonomy of detected labels. For example, a detected car might be assigned the label car. The label car has two parent labels: Vehicle (its parent) and Transportation (its grandparent). The response includes the all ancestors for a label, where every ancestor is a unique label. In the previous example, Car, Vehicle, and Transportation are returned as unique labels in the response.
Aliases - Possible Aliases for the label.
Categories - The label categories that the detected label belongs to.
BoundingBox — Bounding boxes are described for all instances of detected common object labels, returned in an array of Instance objects. An Instance object contains a BoundingBox object, describing the location of the label on the input image. It also includes the confidence for the accuracy of the detected bounding box.
Timestamp - Time, in milliseconds from the start of the video, that the label was detected. For aggregation by
SEGMENTS
, theStartTimestampMillis
,EndTimestampMillis
, andDurationMillis
structures are what define a segment. Although the “Timestamp” structure is still returned with each label, its value is set to be the same asStartTimestampMillis
.
Timestamp and Bounding box information are returned for detected Instances, only if aggregation is done by
TIMESTAMPS
. If aggregating bySEGMENTS
, information about detected instances isn’t returned.The version of the label model used for the detection is also returned.
Note
DominantColors
isn’t returned forInstances
, although it is shown as part of the response in the sample seen below.Use
MaxResults
parameter to limit the number of labels returned. If there are more results than specified inMaxResults
, the value ofNextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, callGetlabelDetection
and populate theNextToken
request parameter with the token value returned from the previous call toGetLabelDetection
.If you are retrieving results while using the Amazon Simple Notification Service, note that you will receive an “ERROR” notification if the job encounters an issue.
See
AWSRekognitionGetLabelDetectionRequest
See
AWSRekognitionGetLabelDetectionResponse
Declaration
Objective-C
- (id)getLabelDetection: (nonnull AWSRekognitionGetLabelDetectionRequest *)request;
Swift
func getLabelDetection(_ request: AWSRekognitionGetLabelDetectionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the GetLabelDetection service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionGetLabelDetectionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Gets the label detection results of a Amazon Rekognition Video analysis started by StartLabelDetection.
The label detection operation is started by a call to StartLabelDetection which returns a job identifier (
JobId
). When the label detection operation finishes, Amazon Rekognition publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call toStartlabelDetection
.To get the results of the label detection operation, first check that the status value published to the Amazon SNS topic is
SUCCEEDED
. If so, call GetLabelDetection and pass the job identifier (JobId
) from the initial call toStartLabelDetection
.GetLabelDetection
returns an array of detected labels (Labels
) sorted by the time the labels were detected. You can also sort by the label name by specifyingNAME
for theSortBy
input parameter. If there is noNAME
specified, the default sort is by timestamp.You can select how results are aggregated by using the
AggregateBy
input parameter. The default aggregation method isTIMESTAMPS
. You can also aggregate bySEGMENTS
, which aggregates all instances of labels detected in a given segment.The returned Labels array may include the following attributes:
Name - The name of the detected label.
Confidence - The level of confidence in the label assigned to a detected object.
Parents - The ancestor labels for a detected label. GetLabelDetection returns a hierarchical taxonomy of detected labels. For example, a detected car might be assigned the label car. The label car has two parent labels: Vehicle (its parent) and Transportation (its grandparent). The response includes the all ancestors for a label, where every ancestor is a unique label. In the previous example, Car, Vehicle, and Transportation are returned as unique labels in the response.
Aliases - Possible Aliases for the label.
Categories - The label categories that the detected label belongs to.
BoundingBox — Bounding boxes are described for all instances of detected common object labels, returned in an array of Instance objects. An Instance object contains a BoundingBox object, describing the location of the label on the input image. It also includes the confidence for the accuracy of the detected bounding box.
Timestamp - Time, in milliseconds from the start of the video, that the label was detected. For aggregation by
SEGMENTS
, theStartTimestampMillis
,EndTimestampMillis
, andDurationMillis
structures are what define a segment. Although the “Timestamp” structure is still returned with each label, its value is set to be the same asStartTimestampMillis
.
Timestamp and Bounding box information are returned for detected Instances, only if aggregation is done by
TIMESTAMPS
. If aggregating bySEGMENTS
, information about detected instances isn’t returned.The version of the label model used for the detection is also returned.
Note
DominantColors
isn’t returned forInstances
, although it is shown as part of the response in the sample seen below.Use
MaxResults
parameter to limit the number of labels returned. If there are more results than specified inMaxResults
, the value ofNextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, callGetlabelDetection
and populate theNextToken
request parameter with the token value returned from the previous call toGetLabelDetection
.If you are retrieving results while using the Amazon Simple Notification Service, note that you will receive an “ERROR” notification if the job encounters an issue.
See
AWSRekognitionGetLabelDetectionRequest
See
AWSRekognitionGetLabelDetectionResponse
Declaration
Objective-C
- (void) getLabelDetection:(nonnull AWSRekognitionGetLabelDetectionRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionGetLabelDetectionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func labelDetection(_ request: AWSRekognitionGetLabelDetectionRequest) async throws -> AWSRekognitionGetLabelDetectionResponse
Parameters
request
A container for the necessary parameters to execute the GetLabelDetection service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Retrieves the results for a given media analysis job. Takes a
JobId
returned by StartMediaAnalysisJob.See
AWSRekognitionGetMediaAnalysisJobRequest
See
AWSRekognitionGetMediaAnalysisJobResponse
Declaration
Objective-C
- (id)getMediaAnalysisJob: (nonnull AWSRekognitionGetMediaAnalysisJobRequest *)request;
Swift
func getMediaAnalysisJob(_ request: AWSRekognitionGetMediaAnalysisJobRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the GetMediaAnalysisJob service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionGetMediaAnalysisJobResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorThrottling
. -
Retrieves the results for a given media analysis job. Takes a
JobId
returned by StartMediaAnalysisJob.See
AWSRekognitionGetMediaAnalysisJobRequest
See
AWSRekognitionGetMediaAnalysisJobResponse
Declaration
Objective-C
- (void)getMediaAnalysisJob: (nonnull AWSRekognitionGetMediaAnalysisJobRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionGetMediaAnalysisJobResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func mediaAnalysisJob(_ request: AWSRekognitionGetMediaAnalysisJobRequest) async throws -> AWSRekognitionGetMediaAnalysisJobResponse
Parameters
request
A container for the necessary parameters to execute the GetMediaAnalysisJob service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorThrottling
. -
Gets the path tracking results of a Amazon Rekognition Video analysis started by StartPersonTracking.
The person path tracking operation is started by a call to
StartPersonTracking
which returns a job identifier (JobId
). When the operation finishes, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call toStartPersonTracking
.To get the results of the person path tracking operation, first check that the status value published to the Amazon SNS topic is
SUCCEEDED
. If so, call GetPersonTracking and pass the job identifier (JobId
) from the initial call toStartPersonTracking
.GetPersonTracking
returns an array,Persons
, of tracked persons and the time(s) their paths were tracked in the video.GetPersonTracking
only returns the default facial attributes (BoundingBox
,Confidence
,Landmarks
,Pose
, andQuality
). The other facial attributes listed in theFace
object of the following response syntax are not returned.For more information, see FaceDetail in the Amazon Rekognition Developer Guide.
By default, the array is sorted by the time(s) a person’s path is tracked in the video. You can sort by tracked persons by specifying
INDEX
for theSortBy
input parameter.Use the
MaxResults
parameter to limit the number of items returned. If there are more results than specified inMaxResults
, the value ofNextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, callGetPersonTracking
and populate theNextToken
request parameter with the token value returned from the previous call toGetPersonTracking
.See
AWSRekognitionGetPersonTrackingRequest
See
AWSRekognitionGetPersonTrackingResponse
Declaration
Objective-C
- (id)getPersonTracking: (nonnull AWSRekognitionGetPersonTrackingRequest *)request;
Swift
func getPersonTracking(_ request: AWSRekognitionGetPersonTrackingRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the GetPersonTracking service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionGetPersonTrackingResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Gets the path tracking results of a Amazon Rekognition Video analysis started by StartPersonTracking.
The person path tracking operation is started by a call to
StartPersonTracking
which returns a job identifier (JobId
). When the operation finishes, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call toStartPersonTracking
.To get the results of the person path tracking operation, first check that the status value published to the Amazon SNS topic is
SUCCEEDED
. If so, call GetPersonTracking and pass the job identifier (JobId
) from the initial call toStartPersonTracking
.GetPersonTracking
returns an array,Persons
, of tracked persons and the time(s) their paths were tracked in the video.GetPersonTracking
only returns the default facial attributes (BoundingBox
,Confidence
,Landmarks
,Pose
, andQuality
). The other facial attributes listed in theFace
object of the following response syntax are not returned.For more information, see FaceDetail in the Amazon Rekognition Developer Guide.
By default, the array is sorted by the time(s) a person’s path is tracked in the video. You can sort by tracked persons by specifying
INDEX
for theSortBy
input parameter.Use the
MaxResults
parameter to limit the number of items returned. If there are more results than specified inMaxResults
, the value ofNextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, callGetPersonTracking
and populate theNextToken
request parameter with the token value returned from the previous call toGetPersonTracking
.See
AWSRekognitionGetPersonTrackingRequest
See
AWSRekognitionGetPersonTrackingResponse
Declaration
Objective-C
- (void) getPersonTracking:(nonnull AWSRekognitionGetPersonTrackingRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionGetPersonTrackingResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func personTracking(_ request: AWSRekognitionGetPersonTrackingRequest) async throws -> AWSRekognitionGetPersonTrackingResponse
Parameters
request
A container for the necessary parameters to execute the GetPersonTracking service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Gets the segment detection results of a Amazon Rekognition Video analysis started by StartSegmentDetection.
Segment detection with Amazon Rekognition Video is an asynchronous operation. You start segment detection by calling StartSegmentDetection which returns a job identifier (
JobId
). When the segment detection operation finishes, Amazon Rekognition publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call toStartSegmentDetection
. To get the results of the segment detection operation, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. if so, callGetSegmentDetection
and pass the job identifier (JobId
) from the initial call ofStartSegmentDetection
.GetSegmentDetection
returns detected segments in an array (Segments
) of SegmentDetection objects.Segments
is sorted by the segment types specified in theSegmentTypes
input parameter ofStartSegmentDetection
. Each element of the array includes the detected segment, the precentage confidence in the acuracy of the detected segment, the type of the segment, and the frame in which the segment was detected.Use
SelectedSegmentTypes
to find out the type of segment detection requested in the call toStartSegmentDetection
.Use the
MaxResults
parameter to limit the number of segment detections returned. If there are more results than specified inMaxResults
, the value ofNextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, callGetSegmentDetection
and populate theNextToken
request parameter with the token value returned from the previous call toGetSegmentDetection
.For more information, see Detecting video segments in stored video in the Amazon Rekognition Developer Guide.
See
AWSRekognitionGetSegmentDetectionRequest
See
AWSRekognitionGetSegmentDetectionResponse
Declaration
Objective-C
- (id)getSegmentDetection: (nonnull AWSRekognitionGetSegmentDetectionRequest *)request;
Swift
func getSegmentDetection(_ request: AWSRekognitionGetSegmentDetectionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the GetSegmentDetection service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionGetSegmentDetectionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Gets the segment detection results of a Amazon Rekognition Video analysis started by StartSegmentDetection.
Segment detection with Amazon Rekognition Video is an asynchronous operation. You start segment detection by calling StartSegmentDetection which returns a job identifier (
JobId
). When the segment detection operation finishes, Amazon Rekognition publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call toStartSegmentDetection
. To get the results of the segment detection operation, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. if so, callGetSegmentDetection
and pass the job identifier (JobId
) from the initial call ofStartSegmentDetection
.GetSegmentDetection
returns detected segments in an array (Segments
) of SegmentDetection objects.Segments
is sorted by the segment types specified in theSegmentTypes
input parameter ofStartSegmentDetection
. Each element of the array includes the detected segment, the precentage confidence in the acuracy of the detected segment, the type of the segment, and the frame in which the segment was detected.Use
SelectedSegmentTypes
to find out the type of segment detection requested in the call toStartSegmentDetection
.Use the
MaxResults
parameter to limit the number of segment detections returned. If there are more results than specified inMaxResults
, the value ofNextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, callGetSegmentDetection
and populate theNextToken
request parameter with the token value returned from the previous call toGetSegmentDetection
.For more information, see Detecting video segments in stored video in the Amazon Rekognition Developer Guide.
See
AWSRekognitionGetSegmentDetectionRequest
See
AWSRekognitionGetSegmentDetectionResponse
Declaration
Objective-C
- (void)getSegmentDetection: (nonnull AWSRekognitionGetSegmentDetectionRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionGetSegmentDetectionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func segmentDetection(_ request: AWSRekognitionGetSegmentDetectionRequest) async throws -> AWSRekognitionGetSegmentDetectionResponse
Parameters
request
A container for the necessary parameters to execute the GetSegmentDetection service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Gets the text detection results of a Amazon Rekognition Video analysis started by StartTextDetection.
Text detection with Amazon Rekognition Video is an asynchronous operation. You start text detection by calling StartTextDetection which returns a job identifier (
JobId
) When the text detection operation finishes, Amazon Rekognition publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call toStartTextDetection
. To get the results of the text detection operation, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. if so, callGetTextDetection
and pass the job identifier (JobId
) from the initial call ofStartLabelDetection
.GetTextDetection
returns an array of detected text (TextDetections
) sorted by the time the text was detected, up to 100 words per frame of video.Each element of the array includes the detected text, the precentage confidence in the acuracy of the detected text, the time the text was detected, bounding box information for where the text was located, and unique identifiers for words and their lines.
Use MaxResults parameter to limit the number of text detections returned. If there are more results than specified in
MaxResults
, the value ofNextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, callGetTextDetection
and populate theNextToken
request parameter with the token value returned from the previous call toGetTextDetection
.See
AWSRekognitionGetTextDetectionRequest
See
AWSRekognitionGetTextDetectionResponse
Declaration
Objective-C
- (id)getTextDetection:(nonnull AWSRekognitionGetTextDetectionRequest *)request;
Swift
func getTextDetection(_ request: AWSRekognitionGetTextDetectionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the GetTextDetection service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionGetTextDetectionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Gets the text detection results of a Amazon Rekognition Video analysis started by StartTextDetection.
Text detection with Amazon Rekognition Video is an asynchronous operation. You start text detection by calling StartTextDetection which returns a job identifier (
JobId
) When the text detection operation finishes, Amazon Rekognition publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call toStartTextDetection
. To get the results of the text detection operation, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. if so, callGetTextDetection
and pass the job identifier (JobId
) from the initial call ofStartLabelDetection
.GetTextDetection
returns an array of detected text (TextDetections
) sorted by the time the text was detected, up to 100 words per frame of video.Each element of the array includes the detected text, the precentage confidence in the acuracy of the detected text, the time the text was detected, bounding box information for where the text was located, and unique identifiers for words and their lines.
Use MaxResults parameter to limit the number of text detections returned. If there are more results than specified in
MaxResults
, the value ofNextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, callGetTextDetection
and populate theNextToken
request parameter with the token value returned from the previous call toGetTextDetection
.See
AWSRekognitionGetTextDetectionRequest
See
AWSRekognitionGetTextDetectionResponse
Declaration
Objective-C
- (void)getTextDetection: (nonnull AWSRekognitionGetTextDetectionRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionGetTextDetectionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func textDetection(_ request: AWSRekognitionGetTextDetectionRequest) async throws -> AWSRekognitionGetTextDetectionResponse
Parameters
request
A container for the necessary parameters to execute the GetTextDetection service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Detects faces in the input image and adds them to the specified collection.
Amazon Rekognition doesn’t save the actual faces that are detected. Instead, the underlying detection algorithm first detects the faces in the input image. For each face, the algorithm extracts facial features into a feature vector, and stores it in the backend database. Amazon Rekognition uses feature vectors when it performs face match and search operations using the SearchFaces and SearchFacesByImage operations.
For more information, see Adding faces to a collection in the Amazon Rekognition Developer Guide.
To get the number of faces in a collection, call DescribeCollection.
If you’re using version 1.0 of the face detection model,
IndexFaces
indexes the 15 largest faces in the input image. Later versions of the face detection model index the 100 largest faces in the input image.If you’re using version 4 or later of the face model, image orientation information is not returned in the
OrientationCorrection
field.To determine which version of the model you’re using, call DescribeCollection and supply the collection ID. You can also get the model version from the value of
FaceModelVersion
in the response fromIndexFaces
For more information, see Model Versioning in the Amazon Rekognition Developer Guide.
If you provide the optional
ExternalImageId
for the input image you provided, Amazon Rekognition associates this ID with all faces that it detects. When you call the ListFaces operation, the response returns the external ID. You can use this external image ID to create a client-side index to associate the faces with each image. You can then use the index to find all faces in an image.You can specify the maximum number of faces to index with the
MaxFaces
input parameter. This is useful when you want to index the largest faces in an image and don’t want to index smaller faces, such as those belonging to people standing in the background.The
QualityFilter
input parameter allows you to filter out detected faces that don’t meet a required quality bar. The quality bar is based on a variety of common use cases. By default,IndexFaces
chooses the quality bar that’s used to filter faces. You can also explicitly choose the quality bar. UseQualityFilter
, to set the quality bar by specifyingLOW
,MEDIUM
, orHIGH
. If you do not want to filter detected faces, specifyNONE
.To use quality filtering, you need a collection associated with version 3 of the face model or higher. To get the version of the face model associated with a collection, call DescribeCollection.
Information about faces detected in an image, but not indexed, is returned in an array of UnindexedFace objects,
UnindexedFaces
. Faces aren’t indexed for reasons such as:The number of faces detected exceeds the value of the
MaxFaces
request parameter.The face is too small compared to the image dimensions.
The face is too blurry.
The image is too dark.
The face has an extreme pose.
The face doesn’t have enough detail to be suitable for face search.
In response, the
IndexFaces
operation returns an array of metadata for all detected faces,FaceRecords
. This includes:The bounding box,
BoundingBox
, of the detected face.A confidence value,
Confidence
, which indicates the confidence that the bounding box contains a face.A face ID,
FaceId
, assigned by the service for each face that’s detected and stored.An image ID,
ImageId
, assigned by the service for the input image.
If you request
ALL
or specific facial attributes (e.g.,FACE_OCCLUDED
) by using the detectionAttributes parameter, Amazon Rekognition returns detailed facial attributes, such as facial landmarks (for example, location of eye and mouth), facial occlusion, and other facial attributes.If you provide the same image, specify the same collection, and use the same external ID in the
IndexFaces
operation, Amazon Rekognition doesn’t save duplicate face metadata.The input image is passed 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 isn’t supported. The image must be formatted as a PNG or JPEG file.
This operation requires permissions to perform the
rekognition:IndexFaces
action.See
AWSRekognitionIndexFacesRequest
See
AWSRekognitionIndexFacesResponse
Declaration
Objective-C
- (id)indexFaces:(nonnull AWSRekognitionIndexFacesRequest *)request;
Swift
func indexFaces(_ request: AWSRekognitionIndexFacesRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the IndexFaces service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionIndexFacesResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidImageFormat
,AWSRekognitionErrorServiceQuotaExceeded
. -
Detects faces in the input image and adds them to the specified collection.
Amazon Rekognition doesn’t save the actual faces that are detected. Instead, the underlying detection algorithm first detects the faces in the input image. For each face, the algorithm extracts facial features into a feature vector, and stores it in the backend database. Amazon Rekognition uses feature vectors when it performs face match and search operations using the SearchFaces and SearchFacesByImage operations.
For more information, see Adding faces to a collection in the Amazon Rekognition Developer Guide.
To get the number of faces in a collection, call DescribeCollection.
If you’re using version 1.0 of the face detection model,
IndexFaces
indexes the 15 largest faces in the input image. Later versions of the face detection model index the 100 largest faces in the input image.If you’re using version 4 or later of the face model, image orientation information is not returned in the
OrientationCorrection
field.To determine which version of the model you’re using, call DescribeCollection and supply the collection ID. You can also get the model version from the value of
FaceModelVersion
in the response fromIndexFaces
For more information, see Model Versioning in the Amazon Rekognition Developer Guide.
If you provide the optional
ExternalImageId
for the input image you provided, Amazon Rekognition associates this ID with all faces that it detects. When you call the ListFaces operation, the response returns the external ID. You can use this external image ID to create a client-side index to associate the faces with each image. You can then use the index to find all faces in an image.You can specify the maximum number of faces to index with the
MaxFaces
input parameter. This is useful when you want to index the largest faces in an image and don’t want to index smaller faces, such as those belonging to people standing in the background.The
QualityFilter
input parameter allows you to filter out detected faces that don’t meet a required quality bar. The quality bar is based on a variety of common use cases. By default,IndexFaces
chooses the quality bar that’s used to filter faces. You can also explicitly choose the quality bar. UseQualityFilter
, to set the quality bar by specifyingLOW
,MEDIUM
, orHIGH
. If you do not want to filter detected faces, specifyNONE
.To use quality filtering, you need a collection associated with version 3 of the face model or higher. To get the version of the face model associated with a collection, call DescribeCollection.
Information about faces detected in an image, but not indexed, is returned in an array of UnindexedFace objects,
UnindexedFaces
. Faces aren’t indexed for reasons such as:The number of faces detected exceeds the value of the
MaxFaces
request parameter.The face is too small compared to the image dimensions.
The face is too blurry.
The image is too dark.
The face has an extreme pose.
The face doesn’t have enough detail to be suitable for face search.
In response, the
IndexFaces
operation returns an array of metadata for all detected faces,FaceRecords
. This includes:The bounding box,
BoundingBox
, of the detected face.A confidence value,
Confidence
, which indicates the confidence that the bounding box contains a face.A face ID,
FaceId
, assigned by the service for each face that’s detected and stored.An image ID,
ImageId
, assigned by the service for the input image.
If you request
ALL
or specific facial attributes (e.g.,FACE_OCCLUDED
) by using the detectionAttributes parameter, Amazon Rekognition returns detailed facial attributes, such as facial landmarks (for example, location of eye and mouth), facial occlusion, and other facial attributes.If you provide the same image, specify the same collection, and use the same external ID in the
IndexFaces
operation, Amazon Rekognition doesn’t save duplicate face metadata.The input image is passed 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 isn’t supported. The image must be formatted as a PNG or JPEG file.
This operation requires permissions to perform the
rekognition:IndexFaces
action.See
AWSRekognitionIndexFacesRequest
See
AWSRekognitionIndexFacesResponse
Declaration
Objective-C
- (void)indexFaces:(nonnull AWSRekognitionIndexFacesRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionIndexFacesResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func indexFaces(_ request: AWSRekognitionIndexFacesRequest) async throws -> AWSRekognitionIndexFacesResponse
Parameters
request
A container for the necessary parameters to execute the IndexFaces service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidImageFormat
,AWSRekognitionErrorServiceQuotaExceeded
. -
Returns list of collection IDs in your account. If the result is truncated, the response also provides a
NextToken
that you can use in the subsequent request to fetch the next set of collection IDs.For an example, see Listing collections in the Amazon Rekognition Developer Guide.
This operation requires permissions to perform the
rekognition:ListCollections
action.See
AWSRekognitionListCollectionsRequest
See
AWSRekognitionListCollectionsResponse
Declaration
Objective-C
- (id)listCollections:(nonnull AWSRekognitionListCollectionsRequest *)request;
Swift
func listCollections(_ request: AWSRekognitionListCollectionsRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the ListCollections service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionListCollectionsResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorResourceNotFound
. -
Returns list of collection IDs in your account. If the result is truncated, the response also provides a
NextToken
that you can use in the subsequent request to fetch the next set of collection IDs.For an example, see Listing collections in the Amazon Rekognition Developer Guide.
This operation requires permissions to perform the
rekognition:ListCollections
action.See
AWSRekognitionListCollectionsRequest
See
AWSRekognitionListCollectionsResponse
Declaration
Objective-C
- (void)listCollections:(nonnull AWSRekognitionListCollectionsRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionListCollectionsResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func listCollections(_ request: AWSRekognitionListCollectionsRequest) async throws -> AWSRekognitionListCollectionsResponse
Parameters
request
A container for the necessary parameters to execute the ListCollections service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorResourceNotFound
. -
This operation applies only to Amazon Rekognition Custom Labels.
Lists the entries (images) within a dataset. An entry is a JSON Line that contains the information for a single image, including the image location, assigned labels, and object location bounding boxes. For more information, see Creating a manifest file.
JSON Lines in the response include information about non-terminal errors found in the dataset. Non terminal errors are reported in
errors
lists within each JSON Line. The same information is reported in the training and testing validation result manifests that Amazon Rekognition Custom Labels creates during model training.You can filter the response in variety of ways, such as choosing which labels to return and returning JSON Lines created after a specific date.
This operation requires permissions to perform the
rekognition:ListDatasetEntries
action.See
AWSRekognitionListDatasetEntriesRequest
See
AWSRekognitionListDatasetEntriesResponse
Declaration
Objective-C
- (id)listDatasetEntries: (nonnull AWSRekognitionListDatasetEntriesRequest *)request;
Swift
func listDatasetEntries(_ request: AWSRekognitionListDatasetEntriesRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the ListDatasetEntries service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionListDatasetEntriesResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorResourceNotReady
. -
This operation applies only to Amazon Rekognition Custom Labels.
Lists the entries (images) within a dataset. An entry is a JSON Line that contains the information for a single image, including the image location, assigned labels, and object location bounding boxes. For more information, see Creating a manifest file.
JSON Lines in the response include information about non-terminal errors found in the dataset. Non terminal errors are reported in
errors
lists within each JSON Line. The same information is reported in the training and testing validation result manifests that Amazon Rekognition Custom Labels creates during model training.You can filter the response in variety of ways, such as choosing which labels to return and returning JSON Lines created after a specific date.
This operation requires permissions to perform the
rekognition:ListDatasetEntries
action.See
AWSRekognitionListDatasetEntriesRequest
See
AWSRekognitionListDatasetEntriesResponse
Declaration
Objective-C
- (void) listDatasetEntries: (nonnull AWSRekognitionListDatasetEntriesRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionListDatasetEntriesResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func listDatasetEntries(_ request: AWSRekognitionListDatasetEntriesRequest) async throws -> AWSRekognitionListDatasetEntriesResponse
Parameters
request
A container for the necessary parameters to execute the ListDatasetEntries service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorResourceNotReady
. -
This operation applies only to Amazon Rekognition Custom Labels.
Lists the labels in a dataset. Amazon Rekognition Custom Labels uses labels to describe images. For more information, see Labeling images.
Lists the labels in a dataset. Amazon Rekognition Custom Labels uses labels to describe images. For more information, see Labeling images in the Amazon Rekognition Custom Labels Developer Guide.
See
AWSRekognitionListDatasetLabelsRequest
See
AWSRekognitionListDatasetLabelsResponse
Declaration
Objective-C
- (id)listDatasetLabels: (nonnull AWSRekognitionListDatasetLabelsRequest *)request;
Swift
func listDatasetLabels(_ request: AWSRekognitionListDatasetLabelsRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the ListDatasetLabels service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionListDatasetLabelsResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceNotReady
. -
This operation applies only to Amazon Rekognition Custom Labels.
Lists the labels in a dataset. Amazon Rekognition Custom Labels uses labels to describe images. For more information, see Labeling images.
Lists the labels in a dataset. Amazon Rekognition Custom Labels uses labels to describe images. For more information, see Labeling images in the Amazon Rekognition Custom Labels Developer Guide.
See
AWSRekognitionListDatasetLabelsRequest
See
AWSRekognitionListDatasetLabelsResponse
Declaration
Objective-C
- (void) listDatasetLabels:(nonnull AWSRekognitionListDatasetLabelsRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionListDatasetLabelsResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func listDatasetLabels(_ request: AWSRekognitionListDatasetLabelsRequest) async throws -> AWSRekognitionListDatasetLabelsResponse
Parameters
request
A container for the necessary parameters to execute the ListDatasetLabels service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceNotReady
. -
Returns metadata for faces in the specified collection. This metadata includes information such as the bounding box coordinates, the confidence (that the bounding box contains a face), and face ID. For an example, see Listing Faces in a Collection in the Amazon Rekognition Developer Guide.
This operation requires permissions to perform the
rekognition:ListFaces
action.See
AWSRekognitionListFacesRequest
See
AWSRekognitionListFacesResponse
Declaration
Objective-C
- (id)listFaces:(nonnull AWSRekognitionListFacesRequest *)request;
Swift
func listFaces(_ request: AWSRekognitionListFacesRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the ListFaces service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionListFacesResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorResourceNotFound
. -
Returns metadata for faces in the specified collection. This metadata includes information such as the bounding box coordinates, the confidence (that the bounding box contains a face), and face ID. For an example, see Listing Faces in a Collection in the Amazon Rekognition Developer Guide.
This operation requires permissions to perform the
rekognition:ListFaces
action.See
AWSRekognitionListFacesRequest
See
AWSRekognitionListFacesResponse
Declaration
Objective-C
- (void)listFaces:(nonnull AWSRekognitionListFacesRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionListFacesResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func listFaces(_ request: AWSRekognitionListFacesRequest) async throws -> AWSRekognitionListFacesResponse
Parameters
request
A container for the necessary parameters to execute the ListFaces service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorResourceNotFound
. -
Returns a list of media analysis jobs. Results are sorted by
CreationTimestamp
in descending order.See
AWSRekognitionListMediaAnalysisJobsRequest
See
AWSRekognitionListMediaAnalysisJobsResponse
Declaration
Objective-C
- (id)listMediaAnalysisJobs: (nonnull AWSRekognitionListMediaAnalysisJobsRequest *)request;
Swift
func listMediaAnalysisJobs(_ request: AWSRekognitionListMediaAnalysisJobsRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the ListMediaAnalysisJobs service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionListMediaAnalysisJobsResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorThrottling
. -
Returns a list of media analysis jobs. Results are sorted by
CreationTimestamp
in descending order.See
AWSRekognitionListMediaAnalysisJobsRequest
See
AWSRekognitionListMediaAnalysisJobsResponse
Declaration
Objective-C
- (void)listMediaAnalysisJobs: (nonnull AWSRekognitionListMediaAnalysisJobsRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionListMediaAnalysisJobsResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func listMediaAnalysisJobs(_ request: AWSRekognitionListMediaAnalysisJobsRequest) async throws -> AWSRekognitionListMediaAnalysisJobsResponse
Parameters
request
A container for the necessary parameters to execute the ListMediaAnalysisJobs service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorThrottling
. -
This operation applies only to Amazon Rekognition Custom Labels.
Gets a list of the project policies attached to a project.
To attach a project policy to a project, call PutProjectPolicy. To remove a project policy from a project, call DeleteProjectPolicy.
This operation requires permissions to perform the
rekognition:ListProjectPolicies
action.See
AWSRekognitionListProjectPoliciesRequest
See
AWSRekognitionListProjectPoliciesResponse
Declaration
Objective-C
- (id)listProjectPolicies: (nonnull AWSRekognitionListProjectPoliciesRequest *)request;
Swift
func listProjectPolicies(_ request: AWSRekognitionListProjectPoliciesRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the ListProjectPolicies service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionListProjectPoliciesResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidPaginationToken
. -
This operation applies only to Amazon Rekognition Custom Labels.
Gets a list of the project policies attached to a project.
To attach a project policy to a project, call PutProjectPolicy. To remove a project policy from a project, call DeleteProjectPolicy.
This operation requires permissions to perform the
rekognition:ListProjectPolicies
action.See
AWSRekognitionListProjectPoliciesRequest
See
AWSRekognitionListProjectPoliciesResponse
Declaration
Objective-C
- (void)listProjectPolicies: (nonnull AWSRekognitionListProjectPoliciesRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionListProjectPoliciesResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func listProjectPolicies(_ request: AWSRekognitionListProjectPoliciesRequest) async throws -> AWSRekognitionListProjectPoliciesResponse
Parameters
request
A container for the necessary parameters to execute the ListProjectPolicies service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidPaginationToken
. -
Gets a list of stream processors that you have created with CreateStreamProcessor.
See
AWSRekognitionListStreamProcessorsRequest
See
AWSRekognitionListStreamProcessorsResponse
Declaration
Objective-C
- (id)listStreamProcessors: (nonnull AWSRekognitionListStreamProcessorsRequest *)request;
Swift
func listStreamProcessors(_ request: AWSRekognitionListStreamProcessorsRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the ListStreamProcessors service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionListStreamProcessorsResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Gets a list of stream processors that you have created with CreateStreamProcessor.
See
AWSRekognitionListStreamProcessorsRequest
See
AWSRekognitionListStreamProcessorsResponse
Declaration
Objective-C
- (void)listStreamProcessors: (nonnull AWSRekognitionListStreamProcessorsRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionListStreamProcessorsResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func listStreamProcessors(_ request: AWSRekognitionListStreamProcessorsRequest) async throws -> AWSRekognitionListStreamProcessorsResponse
Parameters
request
A container for the necessary parameters to execute the ListStreamProcessors service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Returns a list of tags in an Amazon Rekognition collection, stream processor, or Custom Labels model.
This operation requires permissions to perform the
rekognition:ListTagsForResource
action.See
AWSRekognitionListTagsForResourceRequest
See
AWSRekognitionListTagsForResourceResponse
Declaration
Objective-C
- (id)listTagsForResource: (nonnull AWSRekognitionListTagsForResourceRequest *)request;
Swift
func listTags(forResource request: AWSRekognitionListTagsForResourceRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the ListTagsForResource service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionListTagsForResourceResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Returns a list of tags in an Amazon Rekognition collection, stream processor, or Custom Labels model.
This operation requires permissions to perform the
rekognition:ListTagsForResource
action.See
AWSRekognitionListTagsForResourceRequest
See
AWSRekognitionListTagsForResourceResponse
Declaration
Objective-C
- (void)listTagsForResource: (nonnull AWSRekognitionListTagsForResourceRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionListTagsForResourceResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func listTags(forResource request: AWSRekognitionListTagsForResourceRequest) async throws -> AWSRekognitionListTagsForResourceResponse
Parameters
request
A container for the necessary parameters to execute the ListTagsForResource service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Returns metadata of the User such as
UserID
in the specified collection. Anonymous User (to reserve faces without any identity) is not returned as part of this request. The results are sorted by system generated primary key ID. If the response is truncated,NextToken
is returned in the response that can be used in the subsequent request to retrieve the next set of identities.See
AWSRekognitionListUsersRequest
See
AWSRekognitionListUsersResponse
Declaration
Objective-C
- (id)listUsers:(nonnull AWSRekognitionListUsersRequest *)request;
Swift
func listUsers(_ request: AWSRekognitionListUsersRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the ListUsers service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionListUsersResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
. -
Returns metadata of the User such as
UserID
in the specified collection. Anonymous User (to reserve faces without any identity) is not returned as part of this request. The results are sorted by system generated primary key ID. If the response is truncated,NextToken
is returned in the response that can be used in the subsequent request to retrieve the next set of identities.See
AWSRekognitionListUsersRequest
See
AWSRekognitionListUsersResponse
Declaration
Objective-C
- (void)listUsers:(nonnull AWSRekognitionListUsersRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionListUsersResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func listUsers(_ request: AWSRekognitionListUsersRequest) async throws -> AWSRekognitionListUsersResponse
Parameters
request
A container for the necessary parameters to execute the ListUsers service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidPaginationToken
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
. -
This operation applies only to Amazon Rekognition Custom Labels.
Attaches a project policy to a Amazon Rekognition Custom Labels project in a trusting AWS account. A project policy specifies that a trusted AWS account can copy a model version from a trusting AWS account to a project in the trusted AWS account. To copy a model version you use the CopyProjectVersion operation. Only applies to Custom Labels projects.
For more information about the format of a project policy document, see Attaching a project policy (SDK) in the Amazon Rekognition Custom Labels Developer Guide.
The response from
PutProjectPolicy
is a revision ID for the project policy. You can attach multiple project policies to a project. You can also update an existing project policy by specifying the policy revision ID of the existing policy.To remove a project policy from a project, call DeleteProjectPolicy. To get a list of project policies attached to a project, call ListProjectPolicies.
You copy a model version by calling CopyProjectVersion.
This operation requires permissions to perform the
rekognition:PutProjectPolicy
action.See
AWSRekognitionPutProjectPolicyRequest
See
AWSRekognitionPutProjectPolicyResponse
Declaration
Objective-C
- (id)putProjectPolicy:(nonnull AWSRekognitionPutProjectPolicyRequest *)request;
Swift
func putProjectPolicy(_ request: AWSRekognitionPutProjectPolicyRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the PutProjectPolicy service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionPutProjectPolicyResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPolicyRevisionId
,AWSRekognitionErrorMalformedPolicyDocument
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceAlreadyExists
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorServiceQuotaExceeded
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
. -
This operation applies only to Amazon Rekognition Custom Labels.
Attaches a project policy to a Amazon Rekognition Custom Labels project in a trusting AWS account. A project policy specifies that a trusted AWS account can copy a model version from a trusting AWS account to a project in the trusted AWS account. To copy a model version you use the CopyProjectVersion operation. Only applies to Custom Labels projects.
For more information about the format of a project policy document, see Attaching a project policy (SDK) in the Amazon Rekognition Custom Labels Developer Guide.
The response from
PutProjectPolicy
is a revision ID for the project policy. You can attach multiple project policies to a project. You can also update an existing project policy by specifying the policy revision ID of the existing policy.To remove a project policy from a project, call DeleteProjectPolicy. To get a list of project policies attached to a project, call ListProjectPolicies.
You copy a model version by calling CopyProjectVersion.
This operation requires permissions to perform the
rekognition:PutProjectPolicy
action.See
AWSRekognitionPutProjectPolicyRequest
See
AWSRekognitionPutProjectPolicyResponse
Declaration
Objective-C
- (void)putProjectPolicy: (nonnull AWSRekognitionPutProjectPolicyRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionPutProjectPolicyResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func putProjectPolicy(_ request: AWSRekognitionPutProjectPolicyRequest) async throws -> AWSRekognitionPutProjectPolicyResponse
Parameters
request
A container for the necessary parameters to execute the PutProjectPolicy service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidPolicyRevisionId
,AWSRekognitionErrorMalformedPolicyDocument
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceAlreadyExists
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorServiceQuotaExceeded
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
. -
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 the recognized celebrities in theCelebrityFaces
array and any unrecognized faces in theUnrecognizedFaces
array.RecognizeCelebrities
doesn’t return celebrities whose faces aren’t among the largest 64 faces in the image.For each celebrity recognized,
RecognizeCelebrities
returns aCelebrity
object. TheCelebrity
object contains the celebrity name, ID, URL links to additional information, match confidence, and aComparedFace
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 byRecognizeCelebrities
, 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.See
AWSRekognitionRecognizeCelebritiesRequest
See
AWSRekognitionRecognizeCelebritiesResponse
Declaration
Objective-C
- (id)recognizeCelebrities: (nonnull AWSRekognitionRecognizeCelebritiesRequest *)request;
Swift
func recognizeCelebrities(_ request: AWSRekognitionRecognizeCelebritiesRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the RecognizeCelebrities service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionRecognizeCelebritiesResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidImageFormat
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidImageFormat
. -
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 the recognized celebrities in theCelebrityFaces
array and any unrecognized faces in theUnrecognizedFaces
array.RecognizeCelebrities
doesn’t return celebrities whose faces aren’t among the largest 64 faces in the image.For each celebrity recognized,
RecognizeCelebrities
returns aCelebrity
object. TheCelebrity
object contains the celebrity name, ID, URL links to additional information, match confidence, and aComparedFace
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 byRecognizeCelebrities
, 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.See
AWSRekognitionRecognizeCelebritiesRequest
See
AWSRekognitionRecognizeCelebritiesResponse
Declaration
Objective-C
- (void)recognizeCelebrities: (nonnull AWSRekognitionRecognizeCelebritiesRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionRecognizeCelebritiesResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func recognizeCelebrities(_ request: AWSRekognitionRecognizeCelebritiesRequest) async throws -> AWSRekognitionRecognizeCelebritiesResponse
Parameters
request
A container for the necessary parameters to execute the RecognizeCelebrities service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidImageFormat
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidImageFormat
. -
For a given input face ID, searches for matching faces in the collection the face belongs to. You get a face ID when you add a face to the collection using the IndexFaces operation. The operation compares the features of the input face with faces in the specified collection.
You can also search faces without indexing faces by using the
SearchFacesByImage
operation.The operation response returns an array of faces that match, ordered by similarity score with the highest similarity first. More specifically, it is an array of metadata for each face match that is found. Along with the metadata, the response also includes a
confidence
value for each face match, indicating the confidence that the specific face matches the input face.For an example, see Searching for a face using its face ID in the Amazon Rekognition Developer Guide.
This operation requires permissions to perform the
rekognition:SearchFaces
action.See
AWSRekognitionSearchFacesRequest
See
AWSRekognitionSearchFacesResponse
Declaration
Objective-C
- (id)searchFaces:(nonnull AWSRekognitionSearchFacesRequest *)request;
Swift
func searchFaces(_ request: AWSRekognitionSearchFacesRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the SearchFaces service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionSearchFacesResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
. -
For a given input face ID, searches for matching faces in the collection the face belongs to. You get a face ID when you add a face to the collection using the IndexFaces operation. The operation compares the features of the input face with faces in the specified collection.
You can also search faces without indexing faces by using the
SearchFacesByImage
operation.The operation response returns an array of faces that match, ordered by similarity score with the highest similarity first. More specifically, it is an array of metadata for each face match that is found. Along with the metadata, the response also includes a
confidence
value for each face match, indicating the confidence that the specific face matches the input face.For an example, see Searching for a face using its face ID in the Amazon Rekognition Developer Guide.
This operation requires permissions to perform the
rekognition:SearchFaces
action.See
AWSRekognitionSearchFacesRequest
See
AWSRekognitionSearchFacesResponse
Declaration
Objective-C
- (void)searchFaces:(nonnull AWSRekognitionSearchFacesRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionSearchFacesResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func searchFaces(_ request: AWSRekognitionSearchFacesRequest) async throws -> AWSRekognitionSearchFacesResponse
Parameters
request
A container for the necessary parameters to execute the SearchFaces service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
. -
For a given input image, first detects the largest face in the image, and then searches the specified collection for matching faces. The operation compares the features of the input face with faces in the specified collection.
To search for all faces in an input image, you might first call the IndexFaces operation, and then use the face IDs returned in subsequent calls to the SearchFaces operation.
You can also call the
DetectFaces
operation and use the bounding boxes in the response to make face crops, which then you can pass in to theSearchFacesByImage
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.
The response returns an array of faces that match, ordered by similarity score with the highest similarity first. More specifically, it is an array of metadata for each face match found. Along with the metadata, the response also includes a
similarity
indicating how similar the face is to the input face. In the response, the operation also returns the bounding box (and a confidence level that the bounding box contains a face) of the face that Amazon Rekognition used for the input image.If no faces are detected in the input image,
SearchFacesByImage
returns anInvalidParameterException
error.For an example, Searching for a Face Using an Image in the Amazon Rekognition Developer Guide.
The
QualityFilter
input parameter allows you to filter out detected faces that don’t meet a required quality bar. The quality bar is based on a variety of common use cases. UseQualityFilter
to set the quality bar for filtering by specifyingLOW
,MEDIUM
, orHIGH
. If you do not want to filter detected faces, specifyNONE
. The default value isNONE
.To use quality filtering, you need a collection associated with version 3 of the face model or higher. To get the version of the face model associated with a collection, call DescribeCollection.
This operation requires permissions to perform the
rekognition:SearchFacesByImage
action.See
AWSRekognitionSearchFacesByImageRequest
See
AWSRekognitionSearchFacesByImageResponse
Declaration
Objective-C
- (id)searchFacesByImage: (nonnull AWSRekognitionSearchFacesByImageRequest *)request;
Swift
func searchFaces(byImage request: AWSRekognitionSearchFacesByImageRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the SearchFacesByImage service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionSearchFacesByImageResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidImageFormat
. -
For a given input image, first detects the largest face in the image, and then searches the specified collection for matching faces. The operation compares the features of the input face with faces in the specified collection.
To search for all faces in an input image, you might first call the IndexFaces operation, and then use the face IDs returned in subsequent calls to the SearchFaces operation.
You can also call the
DetectFaces
operation and use the bounding boxes in the response to make face crops, which then you can pass in to theSearchFacesByImage
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.
The response returns an array of faces that match, ordered by similarity score with the highest similarity first. More specifically, it is an array of metadata for each face match found. Along with the metadata, the response also includes a
similarity
indicating how similar the face is to the input face. In the response, the operation also returns the bounding box (and a confidence level that the bounding box contains a face) of the face that Amazon Rekognition used for the input image.If no faces are detected in the input image,
SearchFacesByImage
returns anInvalidParameterException
error.For an example, Searching for a Face Using an Image in the Amazon Rekognition Developer Guide.
The
QualityFilter
input parameter allows you to filter out detected faces that don’t meet a required quality bar. The quality bar is based on a variety of common use cases. UseQualityFilter
to set the quality bar for filtering by specifyingLOW
,MEDIUM
, orHIGH
. If you do not want to filter detected faces, specifyNONE
. The default value isNONE
.To use quality filtering, you need a collection associated with version 3 of the face model or higher. To get the version of the face model associated with a collection, call DescribeCollection.
This operation requires permissions to perform the
rekognition:SearchFacesByImage
action.See
AWSRekognitionSearchFacesByImageRequest
See
AWSRekognitionSearchFacesByImageResponse
Declaration
Objective-C
- (void) searchFacesByImage: (nonnull AWSRekognitionSearchFacesByImageRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionSearchFacesByImageResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func searchFaces(byImage request: AWSRekognitionSearchFacesByImageRequest) async throws -> AWSRekognitionSearchFacesByImageResponse
Parameters
request
A container for the necessary parameters to execute the SearchFacesByImage service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidImageFormat
. -
Searches for UserIDs within a collection based on a
FaceId
orUserId
. This API can be used to find the closest UserID (with a highest similarity) to associate a face. The request must be provided with eitherFaceId
orUserId
. The operation returns an array of UserID that match theFaceId
orUserId
, ordered by similarity score with the highest similarity first.See
AWSRekognitionSearchUsersRequest
See
AWSRekognitionSearchUsersResponse
Declaration
Objective-C
- (id)searchUsers:(nonnull AWSRekognitionSearchUsersRequest *)request;
Swift
func searchUsers(_ request: AWSRekognitionSearchUsersRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the SearchUsers service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionSearchUsersResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
. -
Searches for UserIDs within a collection based on a
FaceId
orUserId
. This API can be used to find the closest UserID (with a highest similarity) to associate a face. The request must be provided with eitherFaceId
orUserId
. The operation returns an array of UserID that match theFaceId
orUserId
, ordered by similarity score with the highest similarity first.See
AWSRekognitionSearchUsersRequest
See
AWSRekognitionSearchUsersResponse
Declaration
Objective-C
- (void)searchUsers:(nonnull AWSRekognitionSearchUsersRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionSearchUsersResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func searchUsers(_ request: AWSRekognitionSearchUsersRequest) async throws -> AWSRekognitionSearchUsersResponse
Parameters
request
A container for the necessary parameters to execute the SearchUsers service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
. -
Searches for UserIDs using a supplied image. It first detects the largest face in the image, and then searches a specified collection for matching UserIDs.
The operation returns an array of UserIDs that match the face in the supplied image, ordered by similarity score with the highest similarity first. It also returns a bounding box for the face found in the input image.
Information about faces detected in the supplied image, but not used for the search, is returned in an array of
UnsearchedFace
objects. If no valid face is detected in the image, the response will contain an emptyUserMatches
list and noSearchedFace
object.See
AWSRekognitionSearchUsersByImageRequest
See
AWSRekognitionSearchUsersByImageResponse
Declaration
Objective-C
- (id)searchUsersByImage: (nonnull AWSRekognitionSearchUsersByImageRequest *)request;
Swift
func searchUsers(byImage request: AWSRekognitionSearchUsersByImageRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the SearchUsersByImage service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionSearchUsersByImageResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidImageFormat
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
. -
Searches for UserIDs using a supplied image. It first detects the largest face in the image, and then searches a specified collection for matching UserIDs.
The operation returns an array of UserIDs that match the face in the supplied image, ordered by similarity score with the highest similarity first. It also returns a bounding box for the face found in the input image.
Information about faces detected in the supplied image, but not used for the search, is returned in an array of
UnsearchedFace
objects. If no valid face is detected in the image, the response will contain an emptyUserMatches
list and noSearchedFace
object.See
AWSRekognitionSearchUsersByImageRequest
See
AWSRekognitionSearchUsersByImageResponse
Declaration
Objective-C
- (void) searchUsersByImage: (nonnull AWSRekognitionSearchUsersByImageRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionSearchUsersByImageResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func searchUsers(byImage request: AWSRekognitionSearchUsersByImageRequest) async throws -> AWSRekognitionSearchUsersByImageResponse
Parameters
request
A container for the necessary parameters to execute the SearchUsersByImage service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidImageFormat
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorImageTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
. -
Starts asynchronous recognition of celebrities in a stored video.
Amazon Rekognition Video can detect celebrities in a video must be stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video.
StartCelebrityRecognition
returns a job identifier (JobId
) which you use to get the results of the analysis. When celebrity recognition analysis is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic that you specify inNotificationChannel
. To get the results of the celebrity recognition analysis, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. If so, call GetCelebrityRecognition and pass the job identifier (JobId
) from the initial call toStartCelebrityRecognition
.For more information, see Recognizing celebrities in the Amazon Rekognition Developer Guide.
See
AWSRekognitionStartCelebrityRecognitionRequest
See
AWSRekognitionStartCelebrityRecognitionResponse
Declaration
Objective-C
- (id)startCelebrityRecognition: (nonnull AWSRekognitionStartCelebrityRecognitionRequest *)request;
Swift
func startCelebrityRecognition(_ request: AWSRekognitionStartCelebrityRecognitionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the StartCelebrityRecognition service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionStartCelebrityRecognitionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorVideoTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorThrottling
. -
Starts asynchronous recognition of celebrities in a stored video.
Amazon Rekognition Video can detect celebrities in a video must be stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video.
StartCelebrityRecognition
returns a job identifier (JobId
) which you use to get the results of the analysis. When celebrity recognition analysis is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic that you specify inNotificationChannel
. To get the results of the celebrity recognition analysis, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. If so, call GetCelebrityRecognition and pass the job identifier (JobId
) from the initial call toStartCelebrityRecognition
.For more information, see Recognizing celebrities in the Amazon Rekognition Developer Guide.
See
AWSRekognitionStartCelebrityRecognitionRequest
See
AWSRekognitionStartCelebrityRecognitionResponse
Declaration
Objective-C
- (void) startCelebrityRecognition: (nonnull AWSRekognitionStartCelebrityRecognitionRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionStartCelebrityRecognitionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func startCelebrityRecognition(_ request: AWSRekognitionStartCelebrityRecognitionRequest) async throws -> AWSRekognitionStartCelebrityRecognitionResponse
Parameters
request
A container for the necessary parameters to execute the StartCelebrityRecognition service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorVideoTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorThrottling
. -
Starts asynchronous detection of inappropriate, unwanted, or offensive content in a stored video. For a list of moderation labels in Amazon Rekognition, see Using the image and video moderation APIs.
Amazon Rekognition Video can moderate content in a video stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video.
StartContentModeration
returns a job identifier (JobId
) which you use to get the results of the analysis. When content analysis is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic that you specify inNotificationChannel
.To get the results of the content analysis, first check that the status value published to the Amazon SNS topic is
SUCCEEDED
. If so, call GetContentModeration and pass the job identifier (JobId
) from the initial call toStartContentModeration
.For more information, see Moderating content in the Amazon Rekognition Developer Guide.
See
AWSRekognitionStartContentModerationRequest
See
AWSRekognitionStartContentModerationResponse
Declaration
Objective-C
- (id)startContentModeration: (nonnull AWSRekognitionStartContentModerationRequest *)request;
Swift
func startContentModeration(_ request: AWSRekognitionStartContentModerationRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the StartContentModeration service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionStartContentModerationResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorVideoTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorThrottling
. -
Starts asynchronous detection of inappropriate, unwanted, or offensive content in a stored video. For a list of moderation labels in Amazon Rekognition, see Using the image and video moderation APIs.
Amazon Rekognition Video can moderate content in a video stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video.
StartContentModeration
returns a job identifier (JobId
) which you use to get the results of the analysis. When content analysis is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic that you specify inNotificationChannel
.To get the results of the content analysis, first check that the status value published to the Amazon SNS topic is
SUCCEEDED
. If so, call GetContentModeration and pass the job identifier (JobId
) from the initial call toStartContentModeration
.For more information, see Moderating content in the Amazon Rekognition Developer Guide.
See
AWSRekognitionStartContentModerationRequest
See
AWSRekognitionStartContentModerationResponse
Declaration
Objective-C
- (void)startContentModeration: (nonnull AWSRekognitionStartContentModerationRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionStartContentModerationResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func startContentModeration(_ request: AWSRekognitionStartContentModerationRequest) async throws -> AWSRekognitionStartContentModerationResponse
Parameters
request
A container for the necessary parameters to execute the StartContentModeration service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorVideoTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorThrottling
. -
Starts asynchronous detection of faces in a stored video.
Amazon Rekognition Video can detect faces in a video stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video.
StartFaceDetection
returns a job identifier (JobId
) that you use to get the results of the operation. When face detection is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic that you specify inNotificationChannel
. To get the results of the face detection operation, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. If so, call GetFaceDetection and pass the job identifier (JobId
) from the initial call toStartFaceDetection
.For more information, see Detecting faces in a stored video in the Amazon Rekognition Developer Guide.
See
AWSRekognitionStartFaceDetectionRequest
See
AWSRekognitionStartFaceDetectionResponse
Declaration
Objective-C
- (id)startFaceDetection: (nonnull AWSRekognitionStartFaceDetectionRequest *)request;
Swift
func startFaceDetection(_ request: AWSRekognitionStartFaceDetectionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the StartFaceDetection service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionStartFaceDetectionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorVideoTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorThrottling
. -
Starts asynchronous detection of faces in a stored video.
Amazon Rekognition Video can detect faces in a video stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video.
StartFaceDetection
returns a job identifier (JobId
) that you use to get the results of the operation. When face detection is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic that you specify inNotificationChannel
. To get the results of the face detection operation, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. If so, call GetFaceDetection and pass the job identifier (JobId
) from the initial call toStartFaceDetection
.For more information, see Detecting faces in a stored video in the Amazon Rekognition Developer Guide.
See
AWSRekognitionStartFaceDetectionRequest
See
AWSRekognitionStartFaceDetectionResponse
Declaration
Objective-C
- (void) startFaceDetection: (nonnull AWSRekognitionStartFaceDetectionRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionStartFaceDetectionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func startFaceDetection(_ request: AWSRekognitionStartFaceDetectionRequest) async throws -> AWSRekognitionStartFaceDetectionResponse
Parameters
request
A container for the necessary parameters to execute the StartFaceDetection service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorVideoTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorThrottling
. -
Starts the asynchronous search for faces in a collection that match the faces of persons detected in a stored video.
The video must be stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video.
StartFaceSearch
returns a job identifier (JobId
) which you use to get the search results once the search has completed. When searching is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic that you specify inNotificationChannel
. To get the search results, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. If so, call GetFaceSearch and pass the job identifier (JobId
) from the initial call toStartFaceSearch
. For more information, see Searching stored videos for faces.See
AWSRekognitionStartFaceSearchRequest
See
AWSRekognitionStartFaceSearchResponse
Declaration
Objective-C
- (id)startFaceSearch:(nonnull AWSRekognitionStartFaceSearchRequest *)request;
Swift
func startFaceSearch(_ request: AWSRekognitionStartFaceSearchRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the StartFaceSearch service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionStartFaceSearchResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorVideoTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Starts the asynchronous search for faces in a collection that match the faces of persons detected in a stored video.
The video must be stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video.
StartFaceSearch
returns a job identifier (JobId
) which you use to get the search results once the search has completed. When searching is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic that you specify inNotificationChannel
. To get the search results, first check that the status value published to the Amazon SNS topic isSUCCEEDED
. If so, call GetFaceSearch and pass the job identifier (JobId
) from the initial call toStartFaceSearch
. For more information, see Searching stored videos for faces.See
AWSRekognitionStartFaceSearchRequest
See
AWSRekognitionStartFaceSearchResponse
Declaration
Objective-C
- (void)startFaceSearch:(nonnull AWSRekognitionStartFaceSearchRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionStartFaceSearchResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func startFaceSearch(_ request: AWSRekognitionStartFaceSearchRequest) async throws -> AWSRekognitionStartFaceSearchResponse
Parameters
request
A container for the necessary parameters to execute the StartFaceSearch service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorVideoTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorThrottling
. -
Starts asynchronous detection of labels in a stored video.
Amazon Rekognition Video can detect labels in a video. Labels are instances of real-world entities. This includes objects like flower, tree, and table; events like wedding, graduation, and birthday party; concepts like landscape, evening, and nature; and activities like a person getting out of a car or a person skiing.
The video must be stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video.
StartLabelDetection
returns a job identifier (JobId
) which you use to get the results of the operation. When label detection is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic that you specify inNotificationChannel
.To get the results of the label detection operation, first check that the status value published to the Amazon SNS topic is
SUCCEEDED
. If so, call GetLabelDetection and pass the job identifier (JobId
) from the initial call toStartLabelDetection
.Optional Parameters
StartLabelDetection
has theGENERAL_LABELS
Feature applied by default. This feature allows you to provide filtering criteria to theSettings
parameter. You can filter with sets of individual labels or with label categories. You can specify inclusive filters, exclusive filters, or a combination of inclusive and exclusive filters. For more information on filtering, see Detecting labels in a video.You can specify
MinConfidence
to control the confidence threshold for the labels returned. The default is 50.See
AWSRekognitionStartLabelDetectionRequest
See
AWSRekognitionStartLabelDetectionResponse
Declaration
Objective-C
- (id)startLabelDetection: (nonnull AWSRekognitionStartLabelDetectionRequest *)request;
Swift
func startLabelDetection(_ request: AWSRekognitionStartLabelDetectionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the StartLabelDetection service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionStartLabelDetectionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorVideoTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorThrottling
. -
Starts asynchronous detection of labels in a stored video.
Amazon Rekognition Video can detect labels in a video. Labels are instances of real-world entities. This includes objects like flower, tree, and table; events like wedding, graduation, and birthday party; concepts like landscape, evening, and nature; and activities like a person getting out of a car or a person skiing.
The video must be stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video.
StartLabelDetection
returns a job identifier (JobId
) which you use to get the results of the operation. When label detection is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic that you specify inNotificationChannel
.To get the results of the label detection operation, first check that the status value published to the Amazon SNS topic is
SUCCEEDED
. If so, call GetLabelDetection and pass the job identifier (JobId
) from the initial call toStartLabelDetection
.Optional Parameters
StartLabelDetection
has theGENERAL_LABELS
Feature applied by default. This feature allows you to provide filtering criteria to theSettings
parameter. You can filter with sets of individual labels or with label categories. You can specify inclusive filters, exclusive filters, or a combination of inclusive and exclusive filters. For more information on filtering, see Detecting labels in a video.You can specify
MinConfidence
to control the confidence threshold for the labels returned. The default is 50.See
AWSRekognitionStartLabelDetectionRequest
See
AWSRekognitionStartLabelDetectionResponse
Declaration
Objective-C
- (void)startLabelDetection: (nonnull AWSRekognitionStartLabelDetectionRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionStartLabelDetectionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func startLabelDetection(_ request: AWSRekognitionStartLabelDetectionRequest) async throws -> AWSRekognitionStartLabelDetectionResponse
Parameters
request
A container for the necessary parameters to execute the StartLabelDetection service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorVideoTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorThrottling
. -
Initiates a new media analysis job. Accepts a manifest file in an Amazon S3 bucket. The output is a manifest file and a summary of the manifest stored in the Amazon S3 bucket.
See
AWSRekognitionStartMediaAnalysisJobRequest
See
AWSRekognitionStartMediaAnalysisJobResponse
Declaration
Objective-C
- (id)startMediaAnalysisJob: (nonnull AWSRekognitionStartMediaAnalysisJobRequest *)request;
Swift
func startMediaAnalysisJob(_ request: AWSRekognitionStartMediaAnalysisJobRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the StartMediaAnalysisJob service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionStartMediaAnalysisJobResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInternalServer
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidManifest
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceNotReady
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorIdempotentParameterMismatch
. -
Initiates a new media analysis job. Accepts a manifest file in an Amazon S3 bucket. The output is a manifest file and a summary of the manifest stored in the Amazon S3 bucket.
See
AWSRekognitionStartMediaAnalysisJobRequest
See
AWSRekognitionStartMediaAnalysisJobResponse
Declaration
Objective-C
- (void)startMediaAnalysisJob: (nonnull AWSRekognitionStartMediaAnalysisJobRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionStartMediaAnalysisJobResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func startMediaAnalysisJob(_ request: AWSRekognitionStartMediaAnalysisJobRequest) async throws -> AWSRekognitionStartMediaAnalysisJobResponse
Parameters
request
A container for the necessary parameters to execute the StartMediaAnalysisJob service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInternalServer
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidManifest
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceNotReady
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorIdempotentParameterMismatch
. -
Starts the asynchronous tracking of a person’s path in a stored video.
Amazon Rekognition Video can track the path of people in a video stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video.
StartPersonTracking
returns a job identifier (JobId
) which you use to get the results of the operation. When label detection is finished, Amazon Rekognition publishes a completion status to the Amazon Simple Notification Service topic that you specify inNotificationChannel
.To get the results of the person detection operation, first check that the status value published to the Amazon SNS topic is
SUCCEEDED
. If so, call GetPersonTracking and pass the job identifier (JobId
) from the initial call toStartPersonTracking
.See
AWSRekognitionStartPersonTrackingRequest
See
AWSRekognitionStartPersonTrackingResponse
Declaration
Objective-C
- (id)startPersonTracking: (nonnull AWSRekognitionStartPersonTrackingRequest *)request;
Swift
func startPersonTracking(_ request: AWSRekognitionStartPersonTrackingRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the StartPersonTracking service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionStartPersonTrackingResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorVideoTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorThrottling
. -
Starts the asynchronous tracking of a person’s path in a stored video.
Amazon Rekognition Video can track the path of people in a video stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video.
StartPersonTracking
returns a job identifier (JobId
) which you use to get the results of the operation. When label detection is finished, Amazon Rekognition publishes a completion status to the Amazon Simple Notification Service topic that you specify inNotificationChannel
.To get the results of the person detection operation, first check that the status value published to the Amazon SNS topic is
SUCCEEDED
. If so, call GetPersonTracking and pass the job identifier (JobId
) from the initial call toStartPersonTracking
.See
AWSRekognitionStartPersonTrackingRequest
See
AWSRekognitionStartPersonTrackingResponse
Declaration
Objective-C
- (void)startPersonTracking: (nonnull AWSRekognitionStartPersonTrackingRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionStartPersonTrackingResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func startPersonTracking(_ request: AWSRekognitionStartPersonTrackingRequest) async throws -> AWSRekognitionStartPersonTrackingResponse
Parameters
request
A container for the necessary parameters to execute the StartPersonTracking service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorVideoTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorThrottling
. -
This operation applies only to Amazon Rekognition Custom Labels.
Starts the running of the version of a model. Starting a model takes a while to complete. To check the current state of the model, use DescribeProjectVersions.
Once the model is running, you can detect custom labels in new images by calling DetectCustomLabels.
You are charged for the amount of time that the model is running. To stop a running model, call StopProjectVersion.
This operation requires permissions to perform the
rekognition:StartProjectVersion
action.See
AWSRekognitionStartProjectVersionRequest
See
AWSRekognitionStartProjectVersionResponse
Declaration
Objective-C
- (id)startProjectVersion: (nonnull AWSRekognitionStartProjectVersionRequest *)request;
Swift
func startProjectVersion(_ request: AWSRekognitionStartProjectVersionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the StartProjectVersion service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionStartProjectVersionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
This operation applies only to Amazon Rekognition Custom Labels.
Starts the running of the version of a model. Starting a model takes a while to complete. To check the current state of the model, use DescribeProjectVersions.
Once the model is running, you can detect custom labels in new images by calling DetectCustomLabels.
You are charged for the amount of time that the model is running. To stop a running model, call StopProjectVersion.
This operation requires permissions to perform the
rekognition:StartProjectVersion
action.See
AWSRekognitionStartProjectVersionRequest
See
AWSRekognitionStartProjectVersionResponse
Declaration
Objective-C
- (void)startProjectVersion: (nonnull AWSRekognitionStartProjectVersionRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionStartProjectVersionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func startProjectVersion(_ request: AWSRekognitionStartProjectVersionRequest) async throws -> AWSRekognitionStartProjectVersionResponse
Parameters
request
A container for the necessary parameters to execute the StartProjectVersion service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Starts asynchronous detection of segment detection in a stored video.
Amazon Rekognition Video can detect segments in a video stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video.
StartSegmentDetection
returns a job identifier (JobId
) which you use to get the results of the operation. When segment detection is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic that you specify inNotificationChannel
.You can use the
Filters
(StartSegmentDetectionFilters) input parameter to specify the minimum detection confidence returned in the response. WithinFilters
, useShotFilter
(StartShotDetectionFilter) to filter detected shots. UseTechnicalCueFilter
(StartTechnicalCueDetectionFilter) to filter technical cues.To get the results of the segment detection operation, first check that the status value published to the Amazon SNS topic is
SUCCEEDED
. if so, call GetSegmentDetection and pass the job identifier (JobId
) from the initial call toStartSegmentDetection
.For more information, see Detecting video segments in stored video in the Amazon Rekognition Developer Guide.
See
AWSRekognitionStartSegmentDetectionRequest
See
AWSRekognitionStartSegmentDetectionResponse
Declaration
Objective-C
- (id)startSegmentDetection: (nonnull AWSRekognitionStartSegmentDetectionRequest *)request;
Swift
func startSegmentDetection(_ request: AWSRekognitionStartSegmentDetectionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the StartSegmentDetection service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionStartSegmentDetectionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorVideoTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorThrottling
. -
Starts asynchronous detection of segment detection in a stored video.
Amazon Rekognition Video can detect segments in a video stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video.
StartSegmentDetection
returns a job identifier (JobId
) which you use to get the results of the operation. When segment detection is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic that you specify inNotificationChannel
.You can use the
Filters
(StartSegmentDetectionFilters) input parameter to specify the minimum detection confidence returned in the response. WithinFilters
, useShotFilter
(StartShotDetectionFilter) to filter detected shots. UseTechnicalCueFilter
(StartTechnicalCueDetectionFilter) to filter technical cues.To get the results of the segment detection operation, first check that the status value published to the Amazon SNS topic is
SUCCEEDED
. if so, call GetSegmentDetection and pass the job identifier (JobId
) from the initial call toStartSegmentDetection
.For more information, see Detecting video segments in stored video in the Amazon Rekognition Developer Guide.
See
AWSRekognitionStartSegmentDetectionRequest
See
AWSRekognitionStartSegmentDetectionResponse
Declaration
Objective-C
- (void)startSegmentDetection: (nonnull AWSRekognitionStartSegmentDetectionRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionStartSegmentDetectionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func startSegmentDetection(_ request: AWSRekognitionStartSegmentDetectionRequest) async throws -> AWSRekognitionStartSegmentDetectionResponse
Parameters
request
A container for the necessary parameters to execute the StartSegmentDetection service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorVideoTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorThrottling
. -
Starts processing a stream processor. You create a stream processor by calling CreateStreamProcessor. To tell
StartStreamProcessor
which stream processor to start, use the value of theName
field specified in the call toCreateStreamProcessor
.If you are using a label detection stream processor to detect labels, you need to provide a
Start selector
and aStop selector
to determine the length of the stream processing time.See
AWSRekognitionStartStreamProcessorRequest
See
AWSRekognitionStartStreamProcessorResponse
Declaration
Objective-C
- (id)startStreamProcessor: (nonnull AWSRekognitionStartStreamProcessorRequest *)request;
Swift
func startStreamProcessor(_ request: AWSRekognitionStartStreamProcessorRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the StartStreamProcessor service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionStartStreamProcessorResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Starts processing a stream processor. You create a stream processor by calling CreateStreamProcessor. To tell
StartStreamProcessor
which stream processor to start, use the value of theName
field specified in the call toCreateStreamProcessor
.If you are using a label detection stream processor to detect labels, you need to provide a
Start selector
and aStop selector
to determine the length of the stream processing time.See
AWSRekognitionStartStreamProcessorRequest
See
AWSRekognitionStartStreamProcessorResponse
Declaration
Objective-C
- (void)startStreamProcessor: (nonnull AWSRekognitionStartStreamProcessorRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionStartStreamProcessorResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func startStreamProcessor(_ request: AWSRekognitionStartStreamProcessorRequest) async throws -> AWSRekognitionStartStreamProcessorResponse
Parameters
request
A container for the necessary parameters to execute the StartStreamProcessor service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Starts asynchronous detection of text in a stored video.
Amazon Rekognition Video can detect text in a video stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video.
StartTextDetection
returns a job identifier (JobId
) which you use to get the results of the operation. When text detection is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic that you specify inNotificationChannel
.To get the results of the text detection operation, first check that the status value published to the Amazon SNS topic is
SUCCEEDED
. if so, call GetTextDetection and pass the job identifier (JobId
) from the initial call toStartTextDetection
.See
AWSRekognitionStartTextDetectionRequest
See
AWSRekognitionStartTextDetectionResponse
Declaration
Objective-C
- (id)startTextDetection: (nonnull AWSRekognitionStartTextDetectionRequest *)request;
Swift
func startTextDetection(_ request: AWSRekognitionStartTextDetectionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the StartTextDetection service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionStartTextDetectionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorVideoTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorThrottling
. -
Starts asynchronous detection of text in a stored video.
Amazon Rekognition Video can detect text in a video stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video.
StartTextDetection
returns a job identifier (JobId
) which you use to get the results of the operation. When text detection is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic that you specify inNotificationChannel
.To get the results of the text detection operation, first check that the status value published to the Amazon SNS topic is
SUCCEEDED
. if so, call GetTextDetection and pass the job identifier (JobId
) from the initial call toStartTextDetection
.See
AWSRekognitionStartTextDetectionRequest
See
AWSRekognitionStartTextDetectionResponse
Declaration
Objective-C
- (void) startTextDetection: (nonnull AWSRekognitionStartTextDetectionRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionStartTextDetectionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func startTextDetection(_ request: AWSRekognitionStartTextDetectionRequest) async throws -> AWSRekognitionStartTextDetectionResponse
Parameters
request
A container for the necessary parameters to execute the StartTextDetection service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorIdempotentParameterMismatch
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorInvalidS3Object
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorVideoTooLarge
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorThrottling
. -
This operation applies only to Amazon Rekognition Custom Labels.
Stops a running model. The operation might take a while to complete. To check the current status, call DescribeProjectVersions. Only applies to Custom Labels projects.
This operation requires permissions to perform the
rekognition:StopProjectVersion
action.See
AWSRekognitionStopProjectVersionRequest
See
AWSRekognitionStopProjectVersionResponse
Declaration
Objective-C
- (id)stopProjectVersion: (nonnull AWSRekognitionStopProjectVersionRequest *)request;
Swift
func stopProjectVersion(_ request: AWSRekognitionStopProjectVersionRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the StopProjectVersion service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionStopProjectVersionResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
This operation applies only to Amazon Rekognition Custom Labels.
Stops a running model. The operation might take a while to complete. To check the current status, call DescribeProjectVersions. Only applies to Custom Labels projects.
This operation requires permissions to perform the
rekognition:StopProjectVersion
action.See
AWSRekognitionStopProjectVersionRequest
See
AWSRekognitionStopProjectVersionResponse
Declaration
Objective-C
- (void) stopProjectVersion: (nonnull AWSRekognitionStopProjectVersionRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionStopProjectVersionResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func stopProjectVersion(_ request: AWSRekognitionStopProjectVersionRequest) async throws -> AWSRekognitionStopProjectVersionResponse
Parameters
request
A container for the necessary parameters to execute the StopProjectVersion service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Stops a running stream processor that was created by CreateStreamProcessor.
See
AWSRekognitionStopStreamProcessorRequest
See
AWSRekognitionStopStreamProcessorResponse
Declaration
Objective-C
- (id)stopStreamProcessor: (nonnull AWSRekognitionStopStreamProcessorRequest *)request;
Swift
func stopStreamProcessor(_ request: AWSRekognitionStopStreamProcessorRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the StopStreamProcessor service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionStopStreamProcessorResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Stops a running stream processor that was created by CreateStreamProcessor.
See
AWSRekognitionStopStreamProcessorRequest
See
AWSRekognitionStopStreamProcessorResponse
Declaration
Objective-C
- (void)stopStreamProcessor: (nonnull AWSRekognitionStopStreamProcessorRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionStopStreamProcessorResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func stopStreamProcessor(_ request: AWSRekognitionStopStreamProcessorRequest) async throws -> AWSRekognitionStopStreamProcessorResponse
Parameters
request
A container for the necessary parameters to execute the StopStreamProcessor service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Adds one or more key-value tags to an Amazon Rekognition collection, stream processor, or Custom Labels model. For more information, see Tagging AWS Resources.
This operation requires permissions to perform the
rekognition:TagResource
action.See
AWSRekognitionTagResourceRequest
See
AWSRekognitionTagResourceResponse
Declaration
Objective-C
- (id)tagResource:(nonnull AWSRekognitionTagResourceRequest *)request;
Swift
func tagResource(_ request: AWSRekognitionTagResourceRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the TagResource service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionTagResourceResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorServiceQuotaExceeded
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Adds one or more key-value tags to an Amazon Rekognition collection, stream processor, or Custom Labels model. For more information, see Tagging AWS Resources.
This operation requires permissions to perform the
rekognition:TagResource
action.See
AWSRekognitionTagResourceRequest
See
AWSRekognitionTagResourceResponse
Declaration
Objective-C
- (void)tagResource:(nonnull AWSRekognitionTagResourceRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionTagResourceResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func tagResource(_ request: AWSRekognitionTagResourceRequest) async throws -> AWSRekognitionTagResourceResponse
Parameters
request
A container for the necessary parameters to execute the TagResource service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorServiceQuotaExceeded
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Removes one or more tags from an Amazon Rekognition collection, stream processor, or Custom Labels model.
This operation requires permissions to perform the
rekognition:UntagResource
action.See
AWSRekognitionUntagResourceRequest
See
AWSRekognitionUntagResourceResponse
Declaration
Objective-C
- (id)untagResource:(nonnull AWSRekognitionUntagResourceRequest *)request;
Swift
func untagResource(_ request: AWSRekognitionUntagResourceRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the UntagResource service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionUntagResourceResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
Removes one or more tags from an Amazon Rekognition collection, stream processor, or Custom Labels model.
This operation requires permissions to perform the
rekognition:UntagResource
action.See
AWSRekognitionUntagResourceRequest
See
AWSRekognitionUntagResourceResponse
Declaration
Objective-C
- (void)untagResource:(nonnull AWSRekognitionUntagResourceRequest *)request completionHandler: (void (^_Nullable)(AWSRekognitionUntagResourceResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func untagResource(_ request: AWSRekognitionUntagResourceRequest) async throws -> AWSRekognitionUntagResourceResponse
Parameters
request
A container for the necessary parameters to execute the UntagResource service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
. -
This operation applies only to Amazon Rekognition Custom Labels.
Adds or updates one or more entries (images) in a dataset. An entry is a JSON Line which contains the information for a single image, including the image location, assigned labels, and object location bounding boxes. For more information, see Image-Level labels in manifest files and Object localization in manifest files in the Amazon Rekognition Custom Labels Developer Guide.
If the
source-ref
field in the JSON line references an existing image, the existing image in the dataset is updated. Ifsource-ref
field doesn’t reference an existing image, the image is added as a new image to the dataset.You specify the changes that you want to make in the
Changes
input parameter. There isn’t a limit to the number JSON Lines that you can change, but the size ofChanges
must be less than 5MB.UpdateDatasetEntries
returns immediatly, but the dataset update might take a while to complete. Use DescribeDataset to check the current status. The dataset updated successfully if the value ofStatus
isUPDATE_COMPLETE
.To check if any non-terminal errors occured, call ListDatasetEntries and check for the presence of
errors
lists in the JSON Lines.Dataset update fails if a terminal error occurs (
Status
=UPDATE_FAILED
). Currently, you can’t access the terminal error information from the Amazon Rekognition Custom Labels SDK.This operation requires permissions to perform the
rekognition:UpdateDatasetEntries
action.See
AWSRekognitionUpdateDatasetEntriesRequest
See
AWSRekognitionUpdateDatasetEntriesResponse
Declaration
Objective-C
- (id)updateDatasetEntries: (nonnull AWSRekognitionUpdateDatasetEntriesRequest *)request;
Swift
func updateDatasetEntries(_ request: AWSRekognitionUpdateDatasetEntriesRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the UpdateDatasetEntries service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionUpdateDatasetEntriesResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorResourceNotFound
. -
This operation applies only to Amazon Rekognition Custom Labels.
Adds or updates one or more entries (images) in a dataset. An entry is a JSON Line which contains the information for a single image, including the image location, assigned labels, and object location bounding boxes. For more information, see Image-Level labels in manifest files and Object localization in manifest files in the Amazon Rekognition Custom Labels Developer Guide.
If the
source-ref
field in the JSON line references an existing image, the existing image in the dataset is updated. Ifsource-ref
field doesn’t reference an existing image, the image is added as a new image to the dataset.You specify the changes that you want to make in the
Changes
input parameter. There isn’t a limit to the number JSON Lines that you can change, but the size ofChanges
must be less than 5MB.UpdateDatasetEntries
returns immediatly, but the dataset update might take a while to complete. Use DescribeDataset to check the current status. The dataset updated successfully if the value ofStatus
isUPDATE_COMPLETE
.To check if any non-terminal errors occured, call ListDatasetEntries and check for the presence of
errors
lists in the JSON Lines.Dataset update fails if a terminal error occurs (
Status
=UPDATE_FAILED
). Currently, you can’t access the terminal error information from the Amazon Rekognition Custom Labels SDK.This operation requires permissions to perform the
rekognition:UpdateDatasetEntries
action.See
AWSRekognitionUpdateDatasetEntriesRequest
See
AWSRekognitionUpdateDatasetEntriesResponse
Declaration
Objective-C
- (void)updateDatasetEntries: (nonnull AWSRekognitionUpdateDatasetEntriesRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionUpdateDatasetEntriesResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func updateDatasetEntries(_ request: AWSRekognitionUpdateDatasetEntriesRequest) async throws -> AWSRekognitionUpdateDatasetEntriesResponse
Parameters
request
A container for the necessary parameters to execute the UpdateDatasetEntries service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorLimitExceeded
,AWSRekognitionErrorResourceInUse
,AWSRekognitionErrorResourceNotFound
. -
Allows you to update a stream processor. You can change some settings and regions of interest and delete certain parameters.
See
AWSRekognitionUpdateStreamProcessorRequest
See
AWSRekognitionUpdateStreamProcessorResponse
Declaration
Objective-C
- (id)updateStreamProcessor: (nonnull AWSRekognitionUpdateStreamProcessorRequest *)request;
Swift
func updateStreamProcessor(_ request: AWSRekognitionUpdateStreamProcessorRequest) -> Any!
Parameters
request
A container for the necessary parameters to execute the UpdateStreamProcessor service method.
Return Value
An instance of
AWSTask
. On successful execution,task.result
will contain an instance ofAWSRekognitionUpdateStreamProcessorResponse
. On failed execution,task.error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceInUse
. -
Allows you to update a stream processor. You can change some settings and regions of interest and delete certain parameters.
See
AWSRekognitionUpdateStreamProcessorRequest
See
AWSRekognitionUpdateStreamProcessorResponse
Declaration
Objective-C
- (void)updateStreamProcessor: (nonnull AWSRekognitionUpdateStreamProcessorRequest *)request completionHandler: (void (^_Nullable)( AWSRekognitionUpdateStreamProcessorResponse *_Nullable, NSError *_Nullable))completionHandler;
Swift
func updateStreamProcessor(_ request: AWSRekognitionUpdateStreamProcessorRequest) async throws -> AWSRekognitionUpdateStreamProcessorResponse
Parameters
request
A container for the necessary parameters to execute the UpdateStreamProcessor service method.
completionHandler
The completion handler to call when the load request is complete.
response
- A response object, ornil
if the request failed.error
- An error object that indicates why the request failed, ornil
if the request was successful. On failed execution,error
may contain anNSError
withAWSRekognitionErrorDomain
domain and the following error code:AWSRekognitionErrorAccessDenied
,AWSRekognitionErrorInternalServer
,AWSRekognitionErrorThrottling
,AWSRekognitionErrorInvalidParameter
,AWSRekognitionErrorResourceNotFound
,AWSRekognitionErrorProvisionedThroughputExceeded
,AWSRekognitionErrorResourceInUse
.