To implement a multiple yolo model pipeline on same stream, would it require separate deepstream_app_config and config_infer_primary_yolo files for each model?
Would the nvdsinfer_custom_impl_yolo folder need to be edited for all the custom yolo deepstream models its present in? Could you please tell which other files need to be modified to implement: multiple yolo models into one deepstream app that can produce separate output files for each model on same input stream.
The deepstream test2 app only supports primary detector and secondary classifier on detected objects. How can multiple yolo detectors run simultaneously on same stream and how to customize test2 app for it.
To implement a multiple yolo model pipeline on same stream, would it require separate deepstream_app_config and config_infer_primary_yolo files for each model?
yes, refer to deepstream-test2
Would the nvdsinfer_custom_impl_yolo folder need to be edited for all the custom yolo deepstream models its present in?
basically, yes.
Could you please tell which other files need to be modified to implement: multiple yolo models into one deepstream app that can produce separate output files for each model on same input stream.
will you run it will deepstream-app? if you will, based on the informantion you shared, I don’t see others needed to modify.
The deepstream test2 app only supports primary detector and secondary classifier on detected objects. How can multiple yolo detectors run simultaneously on same stream and how to customize test2 app for it.
simialr as deeepstream-test2, insert another infer after the 2nd nvinfer.
thank you for clarifying.
could you please clarify what files or parameters needed to be modified in nvdsinfer_custom_impl_yolo to run with deepstream-test2. Sorry I just started with deepstream.
I would run deepstream-test2 with independent yolo models but on same stream without cascading them. In that case it would be one pgie config file and one sgie config file, but the secondary detector would also work simultaneously on full frame with the primary detector and both detect different objects. Would that be possible to implement with deepstream-test2.
currently, I have read that deepstream-test2 app displays output in a window, is it possible to save it in an .mp4 file? It is possible to save the output as file in objectDetector_Yolo, by changing sink type, so could I please know if it is possible to save in deepstream test2 app as well?
This is the reference command, that is, you need to change the current sink “nvegltransform ! nveglglessink” to “nvvideoconvert ! nvv4l2h264enc ! h264parse ! qtmux ! filesink location=script.mp4”
Is it possible to save the output to .mp4 file (as above for deepstream test2 app) in back to back detectors?
In deepstream test2 app, how to customize and use two yolo detectors both on full frame (both as primary detectors) without any classifiers. and produce two output video files simultaneously.
Would deepstream-test2 be a better solution or back to back detectors?
Please do clarify. Thank you for your time.