Table of Contents

Target graph list query

Cloud recognition (CRS) databases typically store massive amounts of target graphs. To help developers quickly locate and manage this data, this chapter details how to view, paginate, and understand target graphs.

Managing image targets via EasyAR web

Within the visual interface, the system displays image targets in paginated lists by default, sorted in reverse chronological order (the most recently modified appear first).

Target image collection

Operation path: Log in to the EasyAR Web [Developer Center] -> [Cloud recognition management] -> Select image library -> Click [Manage].

On this interface, you can perform the following operations:

  • Browse list: View paginated target image collections.

  • Detail entry: Click [Manage] at button 1 to enter the detail page of the target image.

  • Precise search: In input box 2, the following two search methods are supported:

    • Search by name: If your system names images according to rules (such as internal application ID), you can quickly locate them by name.
    • Search by TargetId: For example, when you obtain a specific targetId through the similar image query interface, you can query its detailed configuration here.

    filter

Target image details description

After clicking into the details page, you can view the complete attributes of the target image, including:

  • Grayscale image
  • Image name: Custom identifier for the target image.
  • TargetId: System-generated unique ID.
  • Status: Indicates whether the current target image is active or inactive.
  • Quality score: Quantitative rating regarding recognition and tracking performance. For details, refer to Target image recognition difficulty rating.
  • Custom meta: Metadata associated with this target image (e.g., model URL)

detail

Using API to query target collection

For developers needing integration into their own backend, it is recommended to use REST API for management.

Reference documentation: Target collection list API interface

Preparation checklist

Before making the request, ensure the following information is prepared (for details, refer to API call preparation checklist):

  • CRS AppId
  • API Key / API Secret or Token
  • Server-end URL: Target image management URL address, using port 443 for HTTPS

Please replace the placeholder with actual parameters and execute the curl script

  • Your-Server-side-URL → Actual API host
  • Your-Token → Actual API key authorization token
  • Your-CRS-AppId → Your appId
curl -X GET "https://<Your-Server-side-URL>/targets/infos?appId=<Your-CRS-AppId>" \
  -H "Content-Type: application/json" \
  -H "Authorization: <Your-Token>" 

Related topics:

Next topic: