Questions tagged [google-cloud-vision]

Google Cloud Vision API enables developers to understand the content of an image by encapsulating powerful machine learning models in an easy to use REST API.

Google Cloud Vision API enables developers to understand the content of an image by encapsulating powerful machine learning models in an easy to use REST API. It quickly classifies images into thousands of categories (e.g., "sailboat", "lion", "Eiffel Tower"), detects individual objects and faces within images, and finds and reads printed words contained within images.

You can build metadata on your image catalog, moderate offensive content, or enable new marketing scenarios through image sentiment analysis. Analyze images uploaded in the request, and in upcoming releases, integrate with your image storage on Google Cloud Storage. Documentation

889 questions
0
votes
2 answers

Unable to obtain response from google cloud vision api

I am trying to test out google cloud vision api by following Google's tutorial on using cloud vision api. Step 1: Generating JSON Requests by typing the following command in the terminal $ python path/to/generate_json.py -i…
SpaceX
  • 2,814
  • 2
  • 42
  • 68
0
votes
1 answer

Google Cloud Vision IMAGE_PROPERTIES returns 10 colors/results no matter what image and what value for maxResults parameters

I am new to Google Cloud Vision API and I wanted to extract the colors from an image using their dominant color functionality. below is my code which is base on Terrence Ryan's Blog $cvurl =…
0
votes
1 answer

AWS Lambda w/ Google Vision API throwing PEM_read_bio:no start line or Errno::ENAMETOOLONG

The Goal: User uploads to S3, Lambda is triggered to take the file and send to Google Vision API for analysis, returning the results. According to this, google-cloud requires native libraries and must be compiled against the OS that lambda is…
coblr
  • 3,008
  • 3
  • 23
  • 31
0
votes
1 answer

How can I avoid Http Error Code 429 from Google Vision API?

I've been using Google Vision API to perform OCR tasks in some documents using Python. It begins working perfectly, until I start receiving Http Error Code 429, which means I am doing too many requests in a short amount of time. Then, I decided to…
0
votes
2 answers

Google Vision API Error Code

I am trying the example code in https://googlecloudplatform.github.io/google-cloud-python/stable/vision-usage.html from google.cloud import vision client = vision.Client() image = client.image('./image.jpg') safe_search =…
0
votes
3 answers

How I do text detection from image using google vision api?

I new the Android code side and I have a project. I want text detection from ımage using google vision api, but I cannot. I search the internet but I can't find enough information and I know I should use Json(AsynTack). Just want this not face…
Emre Akbaki
  • 266
  • 1
  • 3
  • 14
0
votes
1 answer

Google Cloud Vision API -" image-annotator::Malformed request.: Image processing error"

I am getting an error while querying Google Vision API: { "responses" : [ { "error" : { "code" : 3, "message" : "image-annotator::Malformed request.: Image processing error!" } } ] } I have…
akgaur
  • 755
  • 1
  • 6
  • 21
0
votes
1 answer

I get INVALID_ARGUMENT when I try to use Google Cloud Vision

So I just want to detect text or labels from an image using the google cloud vision API. But When I run this code I always get: com.google.api.client.googleapis.json.GoogleJsonResponseException: 400 Bad Request But I don't know why...here is the…
0
votes
1 answer

How do I call google vision api from an aws ec2 instance?

I am trying to use google cloud vision api, I am trying to use the label detection in order to retrieve the tags of images. First of all, I want to send http request to the api locally to see that all its ok. In the end I would like to deploy my…
0
votes
1 answer

What is the rate at which Google CV is learning new words

I'm working with Google CV and I want to allow users to search for things in a collection of pictures. I really want to eliminate the possibility of a user entering "XYZ" for search where XYZ is a word that isn't available to be recognized in Google…
satnam
  • 1,457
  • 4
  • 23
  • 43
0
votes
1 answer

Google Cloud Vision API returning nothting for Type = TEXT_DETECTION

I'm working on an OCR android application using Google Cloud Vision API For testing I've used the sample application which is provided by Google https://github.com/GoogleCloudPlatform/cloud-vision/tree/master/android/CloudVision I've tested it for…
0
votes
1 answer

List of languages supported in Google Cloud Vision OCR detection?

Working on some modules using Google Cloud Vision API for text detection and was wondering if anyone has list of languages/text it can detect. Personal experience with Italian, French, English, Chinese, Spanish works. What about the ones like Hindi,…
sumandas
  • 555
  • 7
  • 20
0
votes
1 answer

Why does Vision gives me this text relevance on the picture?

This is the image that I'm scanning So the first result is Heb, why it isn't 1350? which is in second place.
robzdc
  • 312
  • 2
  • 12
0
votes
1 answer

Error running Google's Cloud Vision API Example (Face Detection)

I am trying to run the Face Detection Example in Google's Cloud Vision API. I am trying to run [faces.py here][1]. When I run the following: faces.py demo-picture.jpg below is the error I get: ubuntu@ubuntu-VirtualBox:~/Documents/code/python- …
user1406716
  • 9,565
  • 22
  • 96
  • 151
0
votes
0 answers

Google Vision API: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

I've been testing an application example using Google Vision API. I have the code from their github, and created the relevant project and credentials file (something Google Cloud requests) and tried to run the code. I get the…
DanielY
  • 1,141
  • 30
  • 58