markusbr

Results 402 comments of markusbr

Good question! Are you sure your camera provides additional metadata with the system time? I found a few similar questions discussed in StackOverflow, like (for e.g. python, however) - https://stackoverflow.com/questions/73010596/how-to-get-camera-timestamp-for-received-frame...

Do you have multiple GPUs (integrated, embedded, discrete) in your system? Do you have an Intel-GPU? The log message `media driver: rade` could mean you have a mix of GPUs...

Do you remember, have you followed the installation of the pre-requisites (see "https://dlstreamer.github.io/get_started/install/install_guide_ubuntu.html#prerequisites", the description has chaned recetly)? Can you rember whether there were errors or warnings? Are you able...

It looks like installing the GPU-media-driver went wrong (or you installed additional drivers before or afterwards), see the log message: ![image](https://github.com/user-attachments/assets/c5c35ab6-0714-4a0c-9fab-5baf38d4d974) Your screenshots also shows a lot of those performance-related...

This is great! Does the pipeline works because of both, replacing `decodebin` and `videoconvert` in your case? In some cases it is beneficial to explicitly spell-out the decoder plugins. Do...

> [@eaidova](https://github.com/eaidova) I set the proxy but it doesn't work. > > ``` > import os > os.environ['no_proxy'] = "localhost,127.0.0.1" > ``` Some tools check for ENV variables in capital...

EDIT: OK, I see, looks like you are using "HWINfo64". May I ask which tool you use to visualize the NPU load, as shown in your screenshot? ![Image](https://github.com/user-attachments/assets/0ba63797-e91b-404a-b393-b12d0d605115) Do you...

Ok, thank you. I started with "microsoft/Phi-3.5-vision-instruct" - tested CPU and GPU successfully. But when using NPU I get another exception, when doing "result = pipe.generate(prompt=prompt, images=rgbs, generation_config=config, streamer=streamer)": ```...

You can see those cancle sticks as "error bars". In science papers they look like this, for instance: ![Image](https://github.com/user-attachments/assets/d5b2e2cb-3afa-4264-af47-7f55dfa33fc0) The example https://github.com/epezent/implot/blob/master/implot_demo.cpp shows error bars.

Also have a look into the repo https://github.com/epezent/implot_demos with a more detailed sample for candle sticks: https://github.com/epezent/implot_demos/blob/master/demos/stocks.cpp Which looks like this: ![Image](https://github.com/user-attachments/assets/e6f7d628-091b-46a2-8b03-79aee9fc062a)