A
A
API Reference
Search
⌃K

Get job results

get
https://api.playment.io
/v1/projects/:project_id/jobs/:job_id
JOB RESULT
get
https://api.playment.io
/v1/attachments?url=:result_url
ATTACHMENT

Result Object

{
"data": {
"annotation_data": {
"annotations": []
},
"sensor_data": {
"frames": [] //This is the same list you sent while creating the job
}
}
}
The annotations list contains objects, where each object is an tracker. A tracker tracks an object across frames. The frames key in the tracker object maps each annotation object in the tracker to the frame_id it belongs to.
{
"_id": "e94425cc-0984-4af1-95d5-b73234abcd63",
"type": "cuboid3d",
"color": "rgb(185,100,192)",
"label": "Car",
"frames" : {
"frame001" : {<annotation_object>}
}
}
3D Bounding Box
{
"_id": "221efcfe-ca02-4845-8582-53d5e969edfe",
"color": "rgb(185,100,192)",
"label": "Car",
"center": {
"x": -7.9712,
"y": -1.3861,
"z": 1.1033
},
"keyFrame": true,
"rotation": {
"_w": -0.9952638830524981,
"_x": -0.008698959266850841,
"_y": -0.0006932023355776871,
"_z": -0.09681761549149911
},
"attributes": {},
"dimensions": {
"width": 1.8678,
"height": 1.9448,
"length": 4.8818
}
}