cURL
curl --request POST \ --url https://studio.edgeimpulse.com/v1/api/{projectId}/post-processing/{postProcessingId}/samples/{sampleId} \ --header 'Content-Type: application/json' \ --header 'x-api-key: <api-key>' \ --data '{ "enabled": true, "parameters": {} }'
{ "success": true, "error": "<string>", "hasResults": "has-results", "results": { "objectTracking": { "frames": [ { "frameIndex": 123, "objects": [ { "label": "<string>", "id": 123, "x": 123, "y": 123, "width": 123, "height": 123 } ] } ], "parameters": {} }, "objectDetection": { "frames": [ { "frameIndex": 123, "objects": [ { "label": "<string>", "x": 123, "y": 123, "width": 123, "height": 123, "score": 123 } ] } ] } }, "jobIsRunning": { "jobId": 123, "config": { "enabled": true, "parameters": {} } } }
Retrieve post-processing results for a specific sample, e.g. whether it has generated features already.
Project ID
Post-processing Block ID, use the impulse functions to retrieve the ID
Sample ID
OK
The response is of type object.
object