Track objects

Track objects

post

Track objects between two samples. Source sample should have bounding boxes set.

Authorizations
Path parameters
projectIdintegerRequired

Project ID

Body
sourceSampleIdintegerRequired
nextSampleIdintegerRequired
Responses
200
OK
application/json
Responseall of
post
POST /v1/api/{projectId}/raw-data/track-objects HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 37

{
  "sourceSampleId": 1,
  "nextSampleId": 1
}
200

OK

{
  "success": true,
  "error": "text",
  "boundingBoxes": [
    {
      "label": "text",
      "x": 1,
      "y": 1,
      "width": 1,
      "height": 1
    }
  ]
}

Last updated

Was this helpful?