How to configure OpenCV launcher

For enabling OpenCV launcher you need to add framework: opencv in launchers section of your configuration file and provide following parameters:

You also should specify all inputs for your model with their shapes to write inputs, using specific parameter: inputs. Each input description should has following info:

OpenCV launcher config example:

launchers:
- framework: opencv
device: CPU
backend: OCV
model: path_to_model/alexnet.prototxt
weights: path_to_weights/alexnet.caffemodel
inputs:
- name: 'input'
type: INPUT
shape: 3, 32, 32
adapter: classification