0

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)

I.F. Adams
  • 117
  • 9

1 Answers1

0
Rommel_Intel
  • 1,369
  • 1
  • 4
  • 8
  • Hello! Appreciate the prompt response. The challenge I'm having is in packing the input blobs with multiple images using the C approach. Other examples provided either use a single image, or do so using vectored approaches or have what may be idiomatic methods, e.g. object detection. – I.F. Adams Aug 14 '20 at 19:07