
Learning Microsoft Cognitive Services
By :

Using the Bing Visual Search API, one can interpret images. This API allows us to gain insights about images. This includes finding visually similar images, searches, and shopping sources. It can also identify people, places, and objects, as well as text.
You will typically upload an image to the API to retrieve insights on it. In addition, you can pass on an URL to an image.
The endpoint you should use to query the Bing Visual Search API is https://api.cognitive.microsoft.com/bing/v7.0/images/visualsearch.
In either scenario, the following query parameters can be added:
cc: The two-letter language code of the country where the results should come from.
mkt: The market where the results come from. This should always be specified.
safeSearch: The filter used to filter adult content. Can be Off, Moderate, or Strict.
setLang: The language to use for user interface strings, that is, a two-letter language code.
In addition...