Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

163
Views
code for calling aws rekognition detectText api sending base64 encoded image and getting text

how to call aws rekognition detectText service.sending base64 encoded image and getting text from the image. please any one provide the javascript code for that

Calling the detectText operation

var params = {
  Image: { /* required */
    Bytes: Buffer.from('...') || 'STRING_VALUE' /* Strings will be Base-64 encoded on your behalf */,
    S3Object: {
      Bucket: 'STRING_VALUE',
      Name: 'STRING_VALUE',
      Version: 'STRING_VALUE'
    }
  },
  Filters: {
    RegionsOfInterest: [
      {
        BoundingBox: {
          Height: 'NUMBER_VALUE',
          Left: 'NUMBER_VALUE',
          Top: 'NUMBER_VALUE',
          Width: 'NUMBER_VALUE'
        }
      },
      /* more items */
    ],
    WordFilter: {
      MinBoundingBoxHeight: 'NUMBER_VALUE',
      MinBoundingBoxWidth: 'NUMBER_VALUE',
      MinConfidence: 'NUMBER_VALUE'
    }
  }
};
rekognition.detectText(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!