amazon-rekognition Questions
4
Solved
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_sec...
Insinuate asked 2/2, 2017 at 9:47
3
Solved
Running some nodejs aws rekognition to detect labels in mp4 video, but it will not publish to the specified SNS topic when complete. I don't get any permission errors when submitting the request wi...
Farming asked 12/9, 2019 at 21:56
3
Every time I run the command
aws rekognition detect-labels --image "S3Object={Bucket=BucketName,Name=picture.jpg}" --region us-east-1
I get this error.
InvalidS3ObjectException: An erro...
Wainscot asked 13/6, 2017 at 22:32
3
I am creating a DeepLens project to recognise people, when one of select group of people are scanned by the camera.
The project uses a lambda, which processes the images and triggers the 'rekognit...
Cameraman asked 12/12, 2018 at 6:3
1
Solved
I am trying to compare faces calling AWS Rekognition from a Node.Js application. When comparing two images on a S3 bucket, all went fine, but when i tried to upload a local image from the client (R...
Gerthagerti asked 11/11, 2020 at 15:42
2
I am building an OCR based solution to extract information from certain financial documents.
As per the regulation in my country (India), this data cannot leave India.
Is it possible to find the ...
Quintilla asked 21/12, 2018 at 14:30
4
I am using a lambda function of SearchFacesbyimage And I am using this doc https://aws.amazon.com/blogs/machine-learning/build-your-own-face-recognition-service-using-amazon-rekognition/
where for...
Onomasiology asked 7/6, 2018 at 6:35
2
Solved
How do I decide when to use Amazon Textract vs Amazon Rekognition's TextDetect method?
My usecase is click picture from mobile and convert image data into text and store into AWS RDS.
https://aw...
Padua asked 6/5, 2019 at 15:34
2
Relevant Code:
import boto3
from PIL import Image
import base64
client = boto3.client('rekognition')
filename = r'C:\Users\H-63\Pictures\scantests\Rekognition test.JPG'
with open(filename, 'rb'...
Fer asked 28/11, 2017 at 22:57
5
I have images of receipts and I want to store the text in the images separately. Is it possible to detect text from images using Amazon Rekognition?
Cooperstein asked 16/3, 2017 at 18:45
5
The AWS Rekognition Javascript API states that for rekognition.compareFaces(params,...) method, the SourceImage and TargetImage can take Bytes or S3Object. I want to use the Bytes which can be
...
Spurn asked 19/4, 2017 at 11:40
1
I am using boto3 to make calls to recognition's detect label method which takes an image (in form of base64-encoded bytes) as an input. However I keep getting InvalidImageFormatException and I don'...
Intrepid asked 22/8, 2018 at 3:56
3
Solved
Building a simple AWS Rekognition demo with React, using <input type="file">
Getting Invalid image encoding error.
let file = e.target.files[0];
let reader = new FileReader();
reader.read...
Stasiastasis asked 25/4, 2017 at 0:15
1
Solved
I have tried so many way but i can't succeed. I haven't found any source code examples for Android(about rekognition)
there's a source code in JAVA in the Developer Guide but i cannot implement th...
Softpedal asked 4/2, 2017 at 14:48
1
Solved
I'd like to try Rekognition's CompareFaces, but I don't see a full example of the syntax for using the HTTP API. Assuming I have two images, how would I call this API from Python to retrieve a simi...
Dayak asked 30/12, 2016 at 0:7
3
Solved
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 mo...
Restive asked 19/12, 2016 at 18:17
1
© 2022 - 2024 — McMap. All rights reserved.