Can we get the list of matching images with details like imageurl, metadata etc. for imageFile/URL used for making prediction request via prediction api?

Nidhi Sonar 1 Reputation point
2020-11-18T14:25:40.14+00:00

Need to implement visual search in my app.

When we call the prediction URL for making a prediction request for a image, we get the matching Tag and probability.

Looking for an option to get more detailed information like which images under the tag are matching with its metadata, image url etc.

Azure AI Search
Azure AI Search
An Azure search service with built-in artificial intelligence capabilities that enrich information to help identify and explore relevant content at scale.
702 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.
214 questions
{count} votes

1 answer

Sort by: Most helpful
  1. YutongTie-MSFT 46,406 Reputation points
    2020-11-19T03:57:46.97+00:00

    Hello,

    Thanks for reaching out to us. For prediction API, the result will be:

    {
    "id": "00000000-0000-0000-0000-000000000000",
    "project": "00000000-0000-0000-0000-000000000000",
    "iteration": "00000000-0000-0000-0000-000000000000",
    "created": "string",
    "predictions": [
    {
    "probability": 0.0,
    "tagId": "00000000-0000-0000-0000-000000000000",
    "tagName": "string",
    "boundingBox": {
    "left": 0.0,
    "top": 0.0,
    "width": 0.0,
    "height": 0.0
    },
    "tagType": "Regular"
    }
    ]
    }

    You can get more information for Training API for image:
    40919-image.png
    https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeb4

    Regards,
    Yutong

    0 comments No comments