How to use multiple YOLO GIEs on DeepStream
masterThe standard deepstream-app does not support multiple primary GIEs (General Inference Engines). To use multiple YOLO models, you must configure one model as the primary GIE and all subsequent models as secondary GIEs. Secondary GIEs perform inference on the objects detected by the primary GIE.
To implement this, you must:
- Set up a directory structure for each GIE.
- Compile custom libraries for each GIE folder.
- Configure individual
config_infer_primaryfiles for each model. - Update the main
deepstream_app_configto link the primary and secondary GIEs.