This package has been deprecated

Author message:

This package has been deprecated. See https://learn.microsoft.com/bing/search-apis for details on how to use Bing Search Services.

@azure/cognitiveservices-visualsearch
TypeScript icon, indicating that this package has built-in type declarations

3.0.1 • Public • Published

An isomorphic javascript sdk for - VisualSearchClient

This package contains an isomorphic SDK for VisualSearchClient.

Currently supported environments

  • Node.js version 6.x.x or higher
  • Browser JavaScript

How to Install

npm install @azure/cognitiveservices-visualsearch

How to use

nodejs - Authentication, client creation and visualSearch images as an example written in TypeScript.

Install @azure/ms-rest-azure-js
npm install @azure/ms-rest-azure-js
Sample code

The following sample performs a visual search, i.e. perform a search with a image. To know more, refer to the Azure Documentation on Bing Visual Search.

const { VisualSearchClient } = require("@azure/cognitiveservices-visualsearch");
const { CognitiveServicesCredentials } = require("@azure/ms-rest-azure-js");

async function main() {
  const visualSearchKey = process.env["visualSearchKey"] || "<visualSearchKey>";
  const visualSearchEndPoint =
    process.env["visualSearchEndPoint"] || "<visualSearchEndPoint>";
  const cognitiveServiceCredentials = new CognitiveServicesCredentials(
    visualSearchKey
  );
  const client = new VisualSearchClient(cognitiveServiceCredentials, {
    endpoint: visualSearchEndPoint
  });

  const insightsToken =
    process.env["insights_token"] || "<insights_token>";;

  const knowledgeRequest = JSON.stringify({
    imageInfo: {
      imageInsightsToken: insightsToken
    }
  });

  const options = {
    acceptLanguage: "en-US",
    knowledgeRequest: knowledgeRequest
  };

  client.images
    .visualSearch(options)
    .then(result => {
      console.log("The result is: ");
      console.log(result);
    })
    .catch(err => {
      console.log("An error occurred:");
      console.error(err);
    });
}

main();

browser - Authentication, client creation and visualSearch images as an example written in JavaScript.

Sample code
  • index.html
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>@azure/cognitiveservices-visualsearch sample</title>
    <script src="node_modules/@azure/ms-rest-js/dist/msRest.browser.js"></script>
    <script src="node_modules/@azure/cognitiveservices-visualsearch/dist/cognitiveservices-visualsearch.js"></script>
    <script type="text/javascript">
      const visualSearchKey = "<YOUR_VISUAL_SEARCH_KEY>";
      const visualSearchEndPoint = "<YOUR_VISUAL_SEARCH_ENDPOINT>";
      const cognitiveServiceCredentials = new msRest.ApiKeyCredentials({
        inHeader: {
          "Ocp-Apim-Subscription-Key": visualSearchKey
        }
      });
      const client = new Azure.CognitiveservicesVisualsearch.VisualSearchClient(
        cognitiveServiceCredentials,
        {
          endpoint: visualSearchEndPoint
        }
      );

      const insightsToken = "<YOUR_INSIGHTS_TOKEN>";

      const knowledgeRequest = JSON.stringify({
        imageInfo: {
          imageInsightsToken: insightsToken
        }
      });

      const options = {
        acceptLanguage: "en-US",
        knowledgeRequest: knowledgeRequest
      };

      client.images
        .visualSearch(options)
        .then(result => {
          console.log("The result is: ");
          console.log(result);
        })
        .catch(err => {
          console.log("An error occurred:");
          console.error(err);
        });
    </script>
  </head>
  <body></body>
</html>

Related projects

Impressions

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Published

Version History

  • Version
    Downloads (Last 7 Days)
    • Published

Package Sidebar

Install

npm i @azure/cognitiveservices-visualsearch

Weekly Downloads

32

Version

3.0.1

License

MIT

Unpacked Size

644 kB

Total Files

49

Last publish

Collaborators

  • microsoft1es
  • amarzavery
  • vladbarosan
  • veronicagg
  • azure-sdk