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

preguntada hace 2 años225 visualizaciones
1 Respuesta
1
Respuesta aceptada

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
respondido hace 2 años

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas