ModelSet Query
ModelSet Query API
objectCode can be a single string or an array of strings, pass multiple object codes in case of tracking multiple objects in the same session
Query a VPS object using an uploaded image and camera parameters. Accepts objectCode to identify the target object, and returns the query result from the external API.
Standard Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
The code of the VPS object
OBJ-001Camera intrinsic parameter fx (focal length x-axis)
1000.0Camera intrinsic parameter fy (focal length y-axis)
1000.0Camera intrinsic parameter px (principal point x-coordinate)
640.0Camera intrinsic parameter py (principal point y-coordinate)
480.0Specifies whether the coordinate system is right-handed. Because this is form-data, it's sent as a string ("true" or "false").
truePossible values: The width (in pixels) of the input image
1280The height (in pixels) of the input image
720The image file to query against the object
Query successful
Bad request - Invalid parameters or missing required fields
Unauthorized - Missing or invalid token
Forbidden - Access denied
Object not found
Internal server error
Retrieves a paginated list of VPS objects. You can use query parameters to filter or search objects by name, and control pagination settings.
Standard Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
The page number for pagination (starting from 1)
1Example: 1Number of records per page (maximum 100)
10Example: 10Filter or search text for partial match on object names
MultisetA paginated list of VPS objects retrieved successfully
Bad request - Invalid query parameters
Unauthorized - Missing or invalid token
Internal server error
Last updated
Was this helpful?