Questions tagged [google-image-search]

276 questions
4
votes
1 answer

How can I refine my Python reverse image search to limit to a specific domain?

I'm using Python 3.8. I have the following script for launching a Google reverse image search ... filePath = '/tmp/cat_and_dog.webp' searchUrl = 'http://www.google.hr/searchbyimage/upload' multipart = {'encoded_image': (filePath,…
Dave
  • 17,420
  • 96
  • 300
  • 582
4
votes
1 answer

Google indexing cached product images in Magento

I have enabled catalog images caching on my Magento website and the image URL's on the product page are of the form http://www.example.com/media/catalog/product/cache/2/image/9df61e8b45590e35df96d9f179ca0b11/p/r/product-name.jpg Now Google Bot on…
SarthakGupta
  • 614
  • 2
  • 8
  • 22
4
votes
1 answer

How to search image from google, using image ratio?

How to search image from google, using image ratio ? Can i use image ratio for an image search using google ?
4
votes
2 answers

how to start a browser with a Google image search query in android

I was wondering how to start a Browser with a Google image search query "search images by text". For example user can select a certain word or phrase and click a button and the activity will start the browser with the Google image search…
Sama
  • 73
  • 1
  • 4
4
votes
1 answer

Google image search by image in android

Is there any API in android for search image from google by uploading image from my android application ? For Example,We search image by uploading on google.
user1891449
4
votes
1 answer

google image search api limit

I am writing a Java application that needs to get images from Google image search (or similar). It works as simple as a web call: http://ajax.googleapis.com/ajax/services/search/images?v=1.0&q=japan However, the response is limited to 8 results per…
David Portabella
  • 11,264
  • 22
  • 87
  • 164
3
votes
0 answers

Alternatives to Google's Deprecated Image Search API?

Since Google Image Search API has been deprecated does Google provide any alternative to the Yahoo Search Boss API? Is it possible to use the Google Custom Search API in a similar way to retrieve thumbnail images?
doorman
  • 10,751
  • 14
  • 58
  • 113
3
votes
0 answers

Google image search date filter workaround

From what I understand, Google removed custom date range filters for image searches around 2018 - 2019. I was wondering if anyone has found a workaround. Are there other image search engines that allow you to filter images in this way? Is there a…
jan
  • 75
  • 7
3
votes
0 answers

googleusercontent resize return wrong image

I have a google image: http://lh3.googleusercontent.com/YCHiHLv3pCrzi1dK4CFPMkyxPddG8qjsjez-ufiqthPhnqI5XIG39xuXPp0H4Di1BZk-RrIiAyb1nhUOGlA Tried resize this image by add the "s=PixelValue" in the end of URL. Example…
Hung Vu
  • 31
  • 1
3
votes
1 answer

Multiple fileType for Google Custom Search API during image searching

Currently, I'm using Google Custom Search API, to perform image searching using REST https://developers.google.com/custom-search/json-api/v1/reference/cse/list#request I was wondering, what is the correct way, to specific multiple file…
Cheok Yan Cheng
  • 49,649
  • 117
  • 410
  • 768
3
votes
2 answers

Search Google with image in Python

Is there a Google API that allows searching for images "by" images? Instead of a text query and getting image results for that, one would search with an image. I'm not looking to do web scraping with likes of selenium as this could break easily.
DarthPaghius
  • 723
  • 1
  • 6
  • 24
3
votes
1 answer

Google custom search API specifiy image dimension

I am doing a google custom search request for image. My request is below https://www.googleapis.com/customsearch/v1?key=key&cx=cx&q=hello&searchType=image&alt=json&start=1 I know I can specify the image size i.e. [huge, icon, large, medium,…
Md. Parvez Alam
  • 3,795
  • 2
  • 27
  • 74
3
votes
0 answers

advanced image search with CSE

How do I emulate https://www.google.com/advanced_image_search in Google's Custom Search Engine? Google Image Search has been disabled. What I'm trying to achieve here is using the following fields: "any of these words" in "Find images with..."…
3
votes
2 answers

google custom search: get thumbnails in image search results

I am using Rest4Net.GoogleCustomSearch to search images on google custom search. I see no thumbnails in the results, and no search parameter that seems to enable thumbnails in the response.
3
votes
1 answer

How to get a JSON response from a Google Image Search?

All I want to do is a simple Google Images search. We were doing the old, really, incredibly simple way using the now completely deprecated JSON Image Search API. That page now says it is included in Google Custom Search. The problem is that I don't…
sccr410
  • 131
  • 1
  • 12
1 2
3
18 19