I'm trying to find an example of using the C-API (not C++) asynchronous batch interface for OpenVino image inference.
I'm able to do inference on a single image at a time no problem, but its not clear to me how to expand this to batch inference with the C-API.
Does anyone have an example or reference for doing so? The OpenVino documentation is limited on this front, nor do they provide any C-based examples for doing so that I've been able to find.
EDIT: Per comment below, clarifying that the challenge is in understanding how to load up the input blobs with multiple images. The existing examples either assume the C++ interface and use vectors to move things around, or are unclear in what is idiomatic to the example (e.g. the object detection sample using the C-API)