Table of Contents

Target image list query

The cloud recognition (CRS) database typically stores massive amounts of target images. To help developers quickly locate and manage this data, this chapter details how to view, paginate, and understand target image information.

Manage target image collections via EasyAR Web

In the visual interface, the system defaults to displaying target images in a paginated list, sorted in reverse chronological order by last modified time (most recently modified appears first).

Target image collection

Operation path: Log in to EasyAR Web [Development Center] -> [Cloud Recognition Management] -> Select image library -> Click [Manage].

In this interface, you can perform the following operations:

  • List browsing: View the paginated target image collection.

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

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

    • Filter by name: If your system names images according to rules (such as internal application IDs), you can quickly locate them by name.
    • Filter by TargetId: For example, after obtaining a specific targetId through a similar image query API, you can query its detailed configuration here.

    filter

Target image detail description

After clicking into the detail 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: Shows whether the current target image is active or disabled.
  • Quality score: Quantitative score 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, etc.)

detail

Query target image collection using API

For developers needing integration into their own backend systems, using the REST API for management is recommended.

Reference documentation: Target Image Collection List API Interface

Preparation checklist

Before making a request, ensure you have the following information ready (details refer to API Call Preparation Checklist):

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

Replace placeholders 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: