amazon web services - Details about the detection part of AWS Rekognition -


i'm doing investigations aws rekognition. there 2 issues need know didn't answers.

1) how category list of object detection part.

2) how long take process image object labels in without considering data transmission time.

is there has ideas?

using aws command-line interface (cli):

$ time aws rekognition detect-labels \ --image '{"s3object":{"bucket":"my-bucket","name":"fluffy.jpg"}}' \ --region us-east-1 {     "labels": [         {             "confidence": 99.2266845703125,              "name": "plant"         },          {             "confidence": 99.2266845703125,              "name": "potted plant"         },          {             "confidence": 92.96235656738281,              "name": "animal"         },          {             "confidence": 92.96235656738281,              "name": "bunny"         },          {             "confidence": 92.96235656738281,              "name": "mammal"         },          {             "confidence": 92.96235656738281,              "name": "rabbit"         },          {             "confidence": 92.96235656738281,              "name": "rodent"         }     ] }  real    0m1.646s user    0m0.264s sys 0m0.036s 

Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -