Azure Custom Vision - Image search

Alpee Jain 6 Reputation points
2020-11-19T12:52:21.293+00:00

I need to get all the similar images (actual image URL) when I pass the image to the custom vision API, currently, it gives me the matching tags in the predictions.
In my product there is going to be just one Tag and millions of images under that tag, I need the capability that the user finds the similar images (not just the tags), let me know if it is possible? Something similar what Azure Cognitive Bing API does, but I cannot create my own data source there..
Would appreciate a prompt response..

Thanks,
Alpee

Bing Image Search
Bing Image Search
A Bing service that supports searching for images and gets comprehensive results.
44 questions
Azure AI Custom Vision
Azure AI Custom Vision
An Azure artificial intelligence service and end-to-end platform for applying computer vision to specific domains.
209 questions
Azure AI services
Azure AI services
A group of Azure services, SDKs, and APIs designed to make apps more intelligent, engaging, and discoverable.
2,352 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. romungi-MSFT 41,861 Reputation points Microsoft Employee
    2020-11-20T08:15:56.453+00:00

    @Alpee Jain The current version of the custom vision or computer vision API's allows you to pass an image URL and get the tags or features associated with the image so that the response can be processed by the client. The API itself cannot directly analyze and provide the list of image URLs that are similar from a storage location. In an ideal scenario you would like to tag the images with different tags during training and then use the predict API to get the predicted tag and classify the image under that category or tag.

    If you would like to still use one tag and check for similar images in your database, you can make individual calls of an image URL to computer vision analyze image API and process the responses from all image URLs and store the results in a DB so your product can give suggestions to your customers later. I hope this helps.

    0 comments No comments