How to change the display mode of deepstream-yolo-app

Hi,

When deepstream-yolo-app was executed, it’s display mode was full screen,
how to change it’s display to a single window?

Hi,

deepstream-yolo-app use GStreamer for display.
You can update the command here:
[url]https://github.com/NVIDIA-AI-IOT/deepstream_reference_apps/blob/master/yolo/apps/deepstream-yolo/deepstream-yolo-app.cpp#L237[/url]

Thanks.

@AastaLLL

You mean I can replace one parameter in
gst_element_link_many (source, h264parser, decoder, filter1, nvvidconv, filter2, yolo, nvosd, sink, NULL);
it is sink or NULL?
When the parameter is replaced, need I add a plugin to the deepstream-yolo-app.cpp? or there is a default plugin can be used?

Hi,

It is a GStreamer pipeline.
You can update it with a component supported by the GStreamer so you don’t need any plugin for it.

Thanks.