Questions tagged [google-image-search]

276 questions
78
votes
9 answers

Google image search says api no longer available

I am using google image search API. Till yesterday it was working, but today morning it says "This API is no longer available" Is it officially closed, Or any error at my…
Md. Parvez Alam
  • 3,795
  • 2
  • 27
  • 74
53
votes
5 answers

Google Search by Image API?

for my job, I'm looking into an idea in which people would use Google Search by Image and use any celebrity photo they find. Google would return the results and then on our end, a there'd be a database of professionals showing how to get that…
ahainen
  • 727
  • 1
  • 5
  • 12
24
votes
7 answers

Google custom search for images only

Since Google image search API is deprecated, one should use Google custom search API for this. I've made a small example using it. My problem is I want to return google image search results only. Whereby this shows web results, and the user may…
sibidiba
  • 5,974
  • 7
  • 35
  • 50
24
votes
2 answers

How to compose the URL for a reverse Google image search?

I'm managing a photo sharing website and as an admin I'd like to have a button that checks the origin of the uploaded photo (for the sake of copyright infringements). My idea was to simply launch a URL to the Google reverse image search service,…
Fer
  • 3,794
  • 13
  • 52
  • 98
19
votes
4 answers

How does Google's image color search work?

Let's say I query for http://images.google.com.sg/images?q=sky&imgcolor=black and I get all the black color sky, how actually does the algorithm behind work?
SteD
  • 13,331
  • 12
  • 60
  • 74
18
votes
4 answers

Pass callback function to directive

I'm trying to pass a callback function from a controller to a directive. Here's the callback function code: $scope.onImageSelect = function(image) { alert('SET'); $scope.card.image = image; }; Directive usage:
13
votes
5 answers

why couldn't I download images from google with python?

The code helped me download bunch of images from google. It used to work a few days back and now all of the sudden the code breaks. Code : # importing google_images_download module from google_images_download import google_images_download #…
Sai Krishnadas
  • 843
  • 1
  • 9
  • 32
13
votes
3 answers

Script to use Google Image Search with local image as input

I'm looking for a batch or Powershell script to search for similar images on Google images using a local image as input. My research so far The syntax for a image search using a URL rather than a local file is as…
nixda
  • 2,216
  • 8
  • 44
  • 78
12
votes
2 answers

Android Face recognition & get similar faces from the database

In my application I'm going to implement an image search like Google image search. Only difference is here I'm searching only for human faces. Here's how it goes.. user take a picture of a person using the camera. my app should identify the face of…
Ramesh Jaya
  • 641
  • 1
  • 10
  • 16
11
votes
3 answers

Tensorflow return similar images

I want to use Google's Tensorflow to return similar images to an input image. I have installed Tensorflow from http://www.tensorflow.org (using PIP installation - pip and python 2.7) on Ubuntu14.04 on a virtual machine CPU. I have downloaded the…
11
votes
1 answer

Google reverse image search using POST request

I have an app that's basically a database of images stored on my local drive. Sometimes I need to find a higher resolution version or the web source of an image, and Google's reverse image search is ideal for that. Unfortunately, Google doesn't…
Natsukane
  • 611
  • 7
  • 19
10
votes
5 answers

Google image search: How do I construct a reverse image search URL?

How can I programmatically through java convert an image to "some string" to pass it as a parameter for searching in google image search. Actually I have made some base64 convertion of image but it differs from that that google does in its image…
maks
  • 5,574
  • 17
  • 72
  • 116
10
votes
2 answers

Alternative for https://ajax.googleapis.com/ajax/services/search/images?v=1.0

These days I noticed that Google Search API for images which I'm using on my project is no longer available, e.g. https://ajax.googleapis.com/ajax/services/search/images?v=1.0&q=apple returns { "responseData": null, "responseDetails": "This…
Limon Monte
  • 44,025
  • 43
  • 163
  • 189
9
votes
3 answers

Google image download with python cannot download images

I'm using google_images_download library to download top 20 images for a keyword. It's worked perfectly when I'm using it last days. Code is as follows. from google_images_download import google_images_download response =…
Amith
  • 579
  • 1
  • 10
  • 19
9
votes
1 answer

Is there a Google Image Search API?

I'm searching for an API or a program (preferably Python and open-source) which lets me download the first n pictures of a Google Image Search for let's say bicycles. It would also be helpful if it could download the first n .pdf files from a normal…
1
2 3
18 19