Questions tagged [vision-api]

131 questions
0
votes
0 answers

GOOGLE VISION API (Python): how to cut a specific object recognized by (OBJECT_LOCALIZATION)

I'm having difficulties working with Normalized bounding polygon vertices from google.cloud import vision client = vision.ImageAnnotatorClient() with open("resource/carro4.jpg", 'rb') as image_file: content = image_file.read() image =…
Gustavo
  • 1
  • 1
0
votes
1 answer

Can I use Google detection API to detect QR code in an image?

Is it possible to detect a QR code in an image that is in a PDF document with Google API? I just see this page: Google Objects Detection
0
votes
0 answers

Why does this command from google's documentation return error 403 despite providing authentication?

I am trying to create a product set for google VisionAI. I copied the command used to create a product set(given here: https://cloud.google.com/vision/product-search/docs/create-product#powershell) into powershell 7.2 after setting application…
0
votes
0 answers

Java Google Api application Default credentials

How do I declare the application credentials? I have my .json file which is the key. package shyam; // Imports the Google Cloud client library import com.google.cloud.vision.v1.AnnotateImageRequest; import…
meister
  • 31
  • 5
0
votes
0 answers

Vision API - Product Search – detectable category tree

I am looking for some help with finding a list of categories recognized by Google Vision API either by Object Localizer API or by Product Search API. I searched the issue and found an old post here…
0
votes
1 answer

issue with azure computer vision api 3.2 version, as it reading some pdf files with additional garbage values which was not there in older version

I was testing azure computer vision api latest 3.2 version for my pdf files. for some it working fine but for some pdf files which having itext in it (as see this in pdf's meta info)it is not working fine and returning addition garbage values which…
0
votes
1 answer

Firebase ML Vision package is DISCONTINUED for flutter

This is my first question in Stackoverflow. As of June 18, 2021 firebase_ml_vision is working only on device and cannot connect to cloud vision API, I was not able to OCR Chinese texts. I tried this package google_ml_kit. It works but it also cannot…
0
votes
1 answer

Trying to connect Google Vision AI to Django

On my Django website the user is able to upload images. I am trying to implement a feature for them to search for images based on what the images are. To do this I decided to use Google Vision AI. I was able to get this API to work in a separate…
0
votes
1 answer

We are deploying java application in Google app engine and we are getting capacity error

We are deploying java application to use VisionAPI in Google app engine and we are getting capacity error, we were asked to try with different zones still we are getting the same error, GCLOUD: ERROR: (gcloud.app.deploy) Error Response: [8] Flex…
0
votes
1 answer

Android: Draw Landmarks on face using Google Vision API

I have the current code which draw a bounding box around a user's face on a live camera preview. I am also trying to draw the position of facial landmarks on the live camera preview. It draws them but not at the right location due to not having the…
ReeceG
  • 49
  • 6
0
votes
1 answer

Google Vision API - how to detect the face recognition people wearing mask?

I try using Google Vision API with one use case study to detect people face wearing mask, as a result from API response as well as web-ui demo https://cloud.google.com/vision/docs/drag-and-drop, I can not get the right result how to determine people…
sopheamak
  • 393
  • 3
  • 12
0
votes
0 answers

Google Vision Api in python stopped working - beginner coder alarm

I was interested in coding a long time. So this year I got a job where I was supposed to scrape text from old event programs. The pictures where terrible quality and results with normal OCR where horrible. I checked the google vision api and tested…
atr zuta
  • 1
  • 1
0
votes
1 answer

Firebase ML Kit (Text_detection) - getConfident() return NULL

I am implementing firebase's Recognize text in images in my Android App. I can successfully get the result from the API by block/line/element. https://firebase.google.com/docs/ml-kit/android/recognize-text My question is, in the result data…
0
votes
1 answer

Using vision api function to dataframe?

I am using the google API function to extract the expressions, it will detect all the faces from the image def detect_faces_uri(uri): """Detects faces in the file located in Google Cloud Storage or the web.""" from google.cloud import…
s_khan92
  • 969
  • 8
  • 21
0
votes
0 answers

Google Vision API does not detect Kannada text in images

I have been working on a POC with Vision API (REST) to extract text from images. I have been fairly successful and I am able to get good responses from the REST API for certain Indian languages (Tamil, Bengali). However, when I try using images with…
1 2 3
8 9