Auto-label an image

Auto-label an image

post

Classify an image using another neural network.

Authorizations
Path parameters
projectIdintegerRequired

Project ID

sampleIdintegerRequired

Sample ID

Body
neuralNetworkstring · enumRequiredPossible values:
Responses
200
OK
application/json
Responseall of
post
POST /v1/api/{projectId}/raw-data/{sampleId}/autolabel HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 26

{
  "neuralNetwork": "yolov5"
}
200

OK

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

Last updated

Was this helpful?