You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Now I need to get a link to the bbox to show it to a person. And I form the link based on the annotation. So it's not difficult to get a link to the image, we just insert the id into the link:
/tasks/<task_id>/jobs/<job_id>?frame=<image_id>
But when I want to get a direct link to the bbox, it turns out that the box id is not equal to the ServerID, which we can get through the desktop version, when we get the link.
/tasks/<task_id>/jobs/<job_id>?frame=<image_id>&type=shape&serverID=
The question is, how can I get the serverID to create a link to the bbox? Or can I get a link to the box through its id, or in some other way?
Describe the solution you'd like
it may be better to form links to the bbox not by serverID, but by the id of each box. Access will be unique and convenient.
Or add a function to the api that returns a direct link to a separate bbox by image id and bbox id.
Describe alternatives you've considered
the serverID was set as a constant and for each subsequent bbox added the bbox_id and serverID
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Actions before raising this issue
Is your feature request related to a problem? Please describe.
Now I need to get a link to the bbox to show it to a person. And I form the link based on the annotation. So it's not difficult to get a link to the image, we just insert the id into the link:
/tasks/<task_id>/jobs/<job_id>?frame=<image_id>
But when I want to get a direct link to the bbox, it turns out that the box id is not equal to the ServerID, which we can get through the desktop version, when we get the link.
/tasks/<task_id>/jobs/<job_id>?frame=<image_id>&type=shape&serverID=
The question is, how can I get the serverID to create a link to the bbox? Or can I get a link to the box through its id, or in some other way?
Describe the solution you'd like
it may be better to form links to the bbox not by serverID, but by the id of each box. Access will be unique and convenient.
Or add a function to the api that returns a direct link to a separate bbox by image id and bbox id.
Describe alternatives you've considered
the serverID was set as a constant and for each subsequent bbox added the bbox_id and serverID
Additional context
No response
Beta Was this translation helpful? Give feedback.
All reactions