A
A
API Reference
Search
K
Comment on page

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": []
},
"video_data": {
"frames": [] //This is the same list you sent while creating the job
}
}
}
The annotations list contains objects, where each object is a 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": "",
"type": "rectangle", // rectangle/polygon/line/cuboid/landmark
"label": "",
"frames" : {
"frame001" : {<annotation_object>}
}
}
You can check the data structures for the various annotation objects below:
Rectangle
Polygon
Line
Cuboid
Landmark
{
"_id": "0e6d895e-2484-439a-b62b-d8a0afb3d190",
"label": "Cat".
"attributes": {
"pose": {
"value": "standing"
},
"breed": {
"value": "Persian"
}
}
"coordinates": [
{"x": 0.00398, "y": 0.00558},
{"x": 0.05404, "y": 0.00558},
{"x": 0.05404, "y": 0.09096},
{"x": 0.00398, "y": 0.09096}
]
}
{
"_id": "8f8897ad-e07b-4e55-9dbe-61f6b9df85c5",
"label": "face_mask",
"attributes": {
"covers_nose": {
"value": "Yes"
},
}
"points": {
"p1": {"x": 0.286774, "y": 0.892502},
"p2": {"x": 0.385849, "y": 0.576888},
"p3": {"x": 0.426721, "y": 0.469081},
"p4": {"x": 0.288623, "y": 0.253878},
"p5": {"x": 0.148623, "y": 0.353878}
},
"edges": {
"e1": ["p1", "p2"],
"e2": ["p2", "p3"],
"e3": ["p3", "p4"],
"e4": ["p4", "p4"],
"e5": ["p5", "p1"]
}
}
{
"_id": "8f8897ad-e07b-4e55-9dbe-61f6b9df85c5",
"label": "lane_divider",
"attributes": {
"raised": {
"value": "Yes"
},
}
"points": {
"p1": {"x": 0.286774, "y": 0.892502},
"p2": {"x": 0.285849, "y": 0.876888},
"p3": {"x": 0.286774, "y": 0.869081},
"p4": {"x": 0.288623, "y": 0.853878}
}
}
{
"_id": "8f8897ad-e07b-4e55-9dbe-61f6b9df85c5",
"label": "Car",
"attributes" : {
"faces_visible": {
"value": ["right","back"]
}
},
"points": {
"p1": {"x": 0.17,"y": 0.58},
"p2": {"x": 0.26,"y": 0.58},
"p3": {"x": 0.26,"y": 0.49},
"p4": {"x": 0.17,"y": 0.49},
"p5": {"x": 0.24,"y": 0.51},
"p6": {"x": 0.35,"y": 0.52},
"p7": {"x": 0.35,"y": 0.36},
"p8": {"x": 0.25,"y": 0.37}
},
"front": {
"coordinates": ["p1","p2","p3","p4"]
},
"side": {
"coordinates": ["p2","p3","p5","p6"]
},
"back": {
"coordinates": ["p7","p8","p5","p6"]
}
}
{
"_id": "e7e3353f-2ffe-432a-a14f-9cb9a6f4b735",
"label": "nose",
"attributes": {
"visible": {
"value": "Partially"
},
}
"points": {
"p1": { "x": 0.17, "y": 0.58, "label": 1 },
"p2": { "x": 0.26, "y": 0.63, "label": 2 },
"p3": { "x": 0.27, "y": 0.63, "label": 3 },
"p4": { "x": 0.29, "y": 0.59, "label": 4 },
"p5": { "x": 0.25, "y": 0.46, "label": 5 },
"p6": { "x": 0.22, "y": 0.42, "label": 6 }
}
}