Questions tagged [google-vision]

The Google Mobile Vision API for Android provides a framework for finding objects in photos and video.

The Google Mobile Vision API for Android provides a framework for finding objects in photos and video.

Note that issues related to the Google Cloud Vision API should use the tag "google-cloud-vision" rather than this tag.

Learn more about the Google Mobile Vision API through the Google Mobile Vision documentation and Google Mobile Vision sample apps.

720 questions
0
votes
1 answer

Function to choose image file one by one automatically in R

I have a folder with 100+ images. I want to run an google vision analysis on each of them in R. Instead of running the analysis on one image at a time I want to create a function which will access each image one by one and run the analysis. Using…
0
votes
1 answer

Edit and automatically mask creditcard numbers on an image (windows environment)

I have a system to which sometimes the users upload credit or debit card images. The idea is to make the credit card numbers non-human readable. The plan is to mask out the credit card numbers in the image automatically upon loading the image. I am…
Lin
  • 633
  • 8
  • 26
0
votes
1 answer

Add languageHints to Google Cloud Vision

how can I add languageHints to my google cloud vision python code. From https://cloud.google.com/vision/docs/languages I know that it is supported but I do not know how to implement it into the code. from google.cloud import vision client =…
seeberg
  • 99
  • 1
  • 11
0
votes
1 answer

Can the Google Vision API be directed to detect single characters only, or non-English strings?

For example, I'd like to detect a coded string like "A5b1x" written in handwriting. So I'd either split it up manually so that I have an image of each character, or try to have Vision recognize it immediately. Neither is working for now, as I'm not…
0
votes
1 answer

Cloud API Vision Results not appearing

I'm making a request with the google vision api that appears to have worked, I get an operation number back. The problem I am having is the I am not sure how to interpret the results and nothing appeared in the output folder after running the…
Al Katawazi
  • 7,192
  • 6
  • 26
  • 39
0
votes
0 answers

Google Vision V1 deserialize API response

I am using Google Vision via Rest API v1 with feature DOCUMENT_TEXT_DETECTION and API is returning correct result: var response = await httpClient.PostAsync("https://vision.googleapis.com/v1/images:annotate?key=XXXXX",new StringContent(requestJson,…
Kicker
  • 606
  • 1
  • 12
  • 27
0
votes
0 answers

Passing base64 to google vision gives 400 error

I am grabbing frames from the webcam, converting each image bitmap into a base64 string then passing that to the Google vision API. When i do this i am catching an error but it only logs as true. Im new to react and am struggling to see what i am…
Wazza
  • 1,725
  • 2
  • 17
  • 49
0
votes
1 answer

Google Vision Api Text Detection Line Break

When I read an image with text, Google Vision inserts line breaks in the middle of the sentence. How can I do to avoid this. Here's an example of the image text and Google Vision return: Text in the image: 01 600149 CHICKEN M PR 1 UN X 3.500…
Sergio
  • 1
  • 2
0
votes
2 answers

How to extract particular text from Image

From the following image, I want to extract number below text Arzt-Nr (654321161). I've used OCR reader but it is extracting texts randomly not in a sequence, making it difficult to add a logic to extract no below "Arzt-Nr". I've used following…
Ragini
  • 765
  • 1
  • 11
  • 29
0
votes
1 answer

Google Vision API java client: how to set API credentials explicitly in code(without using environment variable)

I'm trying to integrate my project with Google Vision API Here is the maven dependency for you to check the client version I'm trying to integrate with: com.google.cloud
0
votes
1 answer

Implement latest Google Cloud Vision Api Text/Logo Recognition update - LabelDetectionConfig - from Sept 28, 2018?

Anyone know how to set LabelDetectionConfig in Google Cloud Vision api for PHP? Apparently there is new functionality released, described here: https://cloud.google.com/vision/docs/release-notes Improved detection models are now available for the…
Jason Engage
  • 437
  • 4
  • 14
0
votes
1 answer

Google Vision API with Google Cloud Storage

I thank you ahead for your advice and help. I am currently trying to use GCP functions such as Vision API and Google Cloud Storage. Here is my questions Is it possible to upload image saved on local desktop to Google Cloud Storage through base 64…
0
votes
0 answers

Google Vision - read URL from xls

I would like to analyse pictures from Instagram with Google Vision. Up to now, I collected posts from Instagram by hashtag. So I have a CSV/XLS where the information per post is "stored". Title, coordinates and the links to the images. Now I used…
Roman Egger
  • 13
  • 1
  • 5
0
votes
1 answer

textRecognizer.detect(frame); it returns size as 0

I am using google vision API and trying to get the text from the captured image. I have set the captured image in an image view and then I am trying to get the text from the image. but I am getting SparseArray of size 0. what can be the problem.…
Vishwa Ardeshna
  • 437
  • 1
  • 4
  • 7