MaxLabels for Amazon Rekognition Video not working

0

The MaxLabels argument works on the Amazon Rekognition Image but not using a Video. I have this PHP payload I use:

'ClientRequestToken' => (string)Str::uuid(),
            'JobTag' => VideoOperations::REKOGNITION_LABEL_DETECTION,
            'NotificationChannel' => [
                'RoleArn' => config('rekognition.notification_channel.role_arn'),
                'SNSTopicArn' => config('rekognition.notification_channel.sns_arn'),
            ],
            'MinConfidence' => config('rekognition.min_confidence'),
            'MaxLabels' => config('rekognition.max_labels'),
            'Video' => [
                'S3Object' => [
                    'Bucket' => config('rekognition.bucket'),
                    'Name' => $video->filename
                ],
            ]

I checked the official github AWSDocs Rekognition samples and could not find an implementation of the MaxLabels on a Video Rekognition. Is it not supported? https://github.com/awsdocs/amazon-rekognition-developer-guide/search?q=MaxLabels

已提問 2 年前檢視次數 225 次
1 個回答
1
已接受的答案

Dear customer,

Currently, "MaxLabels" is not supported in labels detection for video, i.e., in StartLabelDetection and GetLabelDetection API's.

In GetLabelDetection API, "MaxResults" can be used to specify the maximum number of results to return per paginated API call. However, "MaxResults" in video is different from "MaxLabels" in image. Please see details of video GetLabelDetection "MaxResults" in https://docs.aws.amazon.com/rekognition/latest/APIReference/API_GetLabelDetection.html#API_GetLabelDetection_RequestSyntax. Please see details of image DetectLabels "MaxLabels" in https://docs.aws.amazon.com/rekognition/latest/APIReference/API_DetectLabels.html#API_DetectLabels_RequestSyntax.

Thank you for using Rekognition Video.

AWS
已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南