markusbr
markusbr
What do you mean, where of which "these 2" do you mean? Do you mean the two scripts, "yolo_download.sh" and "yolo_detect.sh"? You can find these two scripts under the folder...
Hmm, the script could have been the same way as with e.g. the tutorials, i.e. alling to specify a path. Instead, the script uses something like this: ` MODEL_PATH="$PWD/public/$MODEL_NAME/FP32/$MODEL_NAME.xml"` =>...
Be prepared to see the same problem when running the script "yolo_detect.sh" - no write permissions to the (hard-coded) paths again. However, the script prints the pipeline to console before...
Now it's getting interesting! Very often I usually started to implement the use-case in a "real application" instead of a gst-launch-1.0 command line... because of many requirements, concurrent sub-use-cases, exchanging...
> so the plan is to get 3 pipelines in parallel (3 different cameras), i am looking to use scene scape to aggregate all into a single scene Are the...
> when using the "&" to try to run both i dont get the prompt back as it keeps outputing Redistribute latency... 0:00:02.9 / 99:99:99. 0:00:04.0 / 99:99:99.ckout:~$ 0:00:02.9 /...
Performance wise it has advantages to use one gstreamer command-line (one process) to allow the plugins to re-use resources (like doing inferences in batches, re-using inference-instances, loading the model only...
> hmm looks like only one XV port available at a time  What exactly have you done? Attaching two times to the running Docker container to get two consoles...?
Hmm, this is working for me, getting two windows with the test-pattern and a bouncing ball: ``` gst-launch-1.0 videotestsrc ! xvimagesink 2>&1 > /dev/null & gst-launch-1.0 videotestsrc pattern=ball ! xvimagesink...
> what is this xvimagesink 2>&1 I am connected to my machines through Remote Desktop This redirects all output of the gstreamer (stderr and stdout) into one stream and then...