Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU) Jetson Orin Nano Dev kit • DeepStream Version 6.4 • JetPack Version (valid for Jetson only) 6.0 • TensorRT Version 8.6.2 • Cuda Version 12.2
• Issue Type( questions, new requirements, bugs)
I’m trying to run DeepStream on Jetson Orin Nano via SSH, but I’m failing. I have implemented a different way to get UDP video. I’m working with the following pipeline: get the UDP video → run DeepStream → extract DeepStream information.
I was extracting the masks of the objects when I encountered the error of not being able to run the application without a display connected to the Jetson. This is a serious problem for me because I would like to run it through an SSH terminal, to receive the output on another computer.
I have tried to run it without EGL by doing unset DISPLAY, but this doesn’t work for me because I would like to visualize the output, such as the masks and IDs. I have discarded RTSP output since I am trying to do real-time live image segmentation, and RTSP output introduces a significant delay to the stream. In addition to that, I have already also setted [osd] enable = 0 • How to reproduce the issue ? (This is for bugs. Including which sample app is using, the configuration files content, the command line used and other details for reproducing):
Run DeepStream app through SSH
The print has some different output prints but the DeepStream code is the same of “deepstream-app/”
For the first note, I understand that the DeepStream app does not support source type 10 by default. However, I created this type, and it works fine when I run it in the local terminal. I made changes to make it easier to debug the problem. Deepstream_app_config.txt (2.8 KB)
(upload for the config file)
After the changes, the SSH output is as follows:
./deepstream-app -c Deepstream_app_config.txt
gstnvtracker: Loading low-level lib at /opt/nvidia/deepstream/deepstream/lib/libnvds_nvmultiobjecttracker.so
nvbufsurface: Failed to create EGLImage.
gstnvtracker: Got -1 mapping nvbufsurface
gstnvtracker: Failed to initialize ConvBufManager
gstnvtracker: Failed to initilaize surface transform buffer pool.
^C** ERROR: <_intr_handler:140>: User Interrupted..
Note: I know that if I unset DISPLAY , I can run the executable, but I would like to have some visual output from DeepStream, such as the DeepStream image with segmented people, or maybe an image implemented by OpenCV.
Thanks for the reply and sorry for the delayed response!
Do you have a monitor on the Jetson Orin Nano? If not, you should unset DISPLAY and set the sink type to rtsp mode.
Please refer to our Guide first sink-group.
I do have a monitor plugged to the jetson by the time, but in the future I would like to run the scripts without it, just by SSH terminals. As you said, i will unset the display and try the RTSP output.
If I have any problem then i am going to open another topic about the RTSP display.
Appreciated your time, thanks for helping me!