Loading...
Classify an image using another neural network.
Project ID
Sample ID
OK
Whether the operation succeeded
Optional error description (set if 'success' was false)
const response = await fetch('https://studio.edgeimpulse.com/v1/api/{projectId}/raw-data/{sampleId}/autolabel', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "neuralNetwork": "yolov5" }), }); const data = await response.json();
{ "success": false, "error": "text", "results": [ { "label": "text", "x": 0, "y": 0, "width": 0, "height": 0 } ], "allLabels": [ "text" ] }