I have a FOMO model that produces bounding boxes (classifications in a section of the image) and I’m wondering is there’s a way to send these bounding boxes to Edge impulse via the ingestion API for a single frame, something like this:
I tried sending your example on x-metadata but kept getting these kinds of errors:
['Metadata is not valid: Value for metadata key "files" is not of type string']
After parsing files into str I was able to upload the image and got all the “files” value on the image metadata under a “files” field which is not what I expected.
I ended up just passing all the bounding box data on different keys and sending it to x-metadata to use for debugging and relabeling which helps (attached image)