Questions tagged [amazon-rekognition]

Amazon Rekognition provides image analysis as a service. Use this tag for questions regarding Rekognition's API, CLI, or SDKs.

Amazon Rekognition provides image analysis as a service.

Usage Guidance

  • Use this tag for questions regarding Amazon Rekognition's API, CLI, or SDKs.

Resources

312 questions
5
votes
4 answers

Error in Boto AWS Rekognition

I am trying to compare faces using AWS Rekognitionthrough Python boto3, as instructed in the AWS documentation. My API call is: client = boto3.client('rekognition', aws_access_key_id=key, aws_secret_access_key=secret, region_name=region…
harshvardhan
  • 765
  • 13
  • 32
5
votes
3 answers

AWS Rekognition InvalidImageFormatException when jpeg source is mjpeg stream

I'm pulling jpg frames out of a mjpg stream. These are valid jpg files and work in any image tool I've tried; however, Rekognition will not accept them either when sending it as Bytes, or when I move them to S3 and try that route. I've made a few…
Will
  • 2,604
  • 2
  • 18
  • 14
4
votes
3 answers

Detecting liveness with AWS Rekognition

I am looking to use AWS Reckognition in one of my projects and trying to find out whether or not its possible to differentiate between a still image (photograph) vs a real person, in other words liveness detection. I don't want my system to be…
4
votes
2 answers

Is it possible to get the count of objects using Google's Vision API or Amazon's Rekognition?

I have been exploring to get the count of the objects in an image / video using AWS Rekognition & Google's Vision, but haven't been able to find a way out. Though at Google's Vision site, they do have a section 'Insight from the Images' where…
Amit
  • 194
  • 4
  • 20
4
votes
2 answers

Streaming webcam video to AWS Kinesis?

I know this might be a relatively generic question, but I'm trying to see how I can get pointed in the right direction... I'm trying to build a live face recognition app, using AWS Rekognition. I'm pretty comfortable with the API, and using static…
nukalov
  • 1,309
  • 13
  • 18
4
votes
2 answers

Extract faces from video using AWS Rekognition

With AWS Rekognition I was able to get faces detected in a mp4 video with the following nodejs, var AWS = require("aws-sdk"); AWS.config.update({ …
Kannaiyan
  • 12,554
  • 3
  • 44
  • 83
4
votes
1 answer

AWS Rekognition - Search all faces in an image against collection

I have created a collection of images which are all faces of individuals. Now my requirement is to take an image which has multiple people in it and find people in this images against the created collection. However SearchFacesByImage API picks up…
Sourabh Jain
  • 628
  • 6
  • 20
4
votes
5 answers

Solution to identify "Similar Product Images"?

I want to build a cloud based solution in which I would give a pool of images; and then ask for "find similar image to a particular image from this pool of images" !! Pool of images can be like "all t-shirt" images. Hence, similar images mean…
4
votes
2 answers

How to use AWS Rekognition to detect Image Labels and Faces in Swift 3

So I've been trying to use the AWSRekognition SDK in order to detect faces and labels in images. However, Amazon has no Documentation on how to integrate their SDK with iOS. They have links that show how to work with Rekognition (Developer Guide)…
David Cruz
  • 2,995
  • 3
  • 28
  • 41
3
votes
0 answers

AWS Rekognition Custom Labels Training "The manifest file contains too many invalid data objects" error

I'm trying to do a quick PoC on the AWS Rekognition custom labels feature. I'd like to try using it for object detection. I've had a couple of attempts at setting it up using only tools in the AWS Console. I'm using images imported from the…
Jim OHalloran
  • 5,859
  • 2
  • 37
  • 57
3
votes
1 answer

AWS facial rekognition within an Android app

I'am trying to make an Android application which can send images taken by a camera on an Android tablet to AWS Rekognition. It's the intention that pictures will be directly send to the AWS Rekognition service without the need of an S3 bucket. The…
3
votes
0 answers

Can AWS Rekognition detect whether a face is real or a spoofed with no video analysis?

I'm developing a facial recognition API with AWS Rekognition, and I need to check if the faces in the images uploaded by the user are real or fake. For instance, they could hold a phone with another person's face or a printed photo. I'd like to know…
3
votes
1 answer

AWS Rekognition: Add extra faces of same person

I can manage to add an image to AWS Rekognition Collection using the IndexFacesRequest. However, to improve accuracy I would like to add more images of the same user. How do I let the request know it is the same user?
D2TheC
  • 2,203
  • 20
  • 23
3
votes
1 answer

AWS rekognition InvalidParameterException

I got aws rekognition invalid parameter Exception, if I upload small lower resolution image. see below error https://rekognition.us-west-2.amazonaws.com` resulted in a `400 Bad Request` response:…
3
votes
0 answers

Multiple Validation Errors - AWS Rekognition

The code below is currently running in Lambda - NodeJS 6.10 with all the correct modules imported. The expected output is a JobId However I keep getting validation errors despite this being the syntax provided by AWS. If I remove both items…
db46
  • 73
  • 6
1
2
3
20 21