Questions tagged [nvidia-jetson]

Nvidia Jetson is Nvidia's family of embedded devices, targeted for computing on the edge by users desiring to run machine learning and artificial intelligence tasks.

Use this tag for questions about programming specifically for the Jetson devices, namely: the Nano, TX1, TX2(i), or AGX. Please also tag the language you are coding in and the frameworks you are using for context.

Visit Nvidia's official site for more information on the Jetson devices.

405 questions
0
votes
0 answers

Cylindrical Projection OpenCV Jetson AGX

I’m currently working on a project trying to stitch 2 video inputs together to form a wide view covering 180 degrees. An alternative to stitching, which I assume would take a lot of processing power for real time stitching, could be cylindrical…
Aleks-CST
  • 3
  • 4
0
votes
0 answers

/usr/lib/aarch64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.26' not found

i need help to install tensorflow on jetson nano. I follow guide at: https://docs.nvidia.com/deeplearning/frameworks/install-tf-jetson-platform/index.html After that, my tensorflow version is: 1.15.5+nv22.3 But when i run: import…
0
votes
1 answer

problem with start and execute a docker container

I am new to docker I am using ssh to connect to Nvidia jetson NX and use the docker on nvidia the system for nvidia is a modifed ubuntu 18.04 called tegra. What I want to do is to exec the container named tetraai_service_nx. It worked fine until…
0
votes
1 answer

Automated mouse clicking in Python (Ubuntu 18.04 LTS)

I found a python module called 'mouse' (installed using 'sudo pip3 install mouse') that allows control of the mouse cursor's position using python, but the mouse.click() method that it provides doesn't do anything. Is there a way for me to simulate…
0
votes
0 answers

how i can solve this error on jetson xavier NX?

I want to use vision component CSI camera. I follow an instruction here ( https://github.com/VC-MIPI-modules/vc_mipi_nvidia). but I face an error below. I tryied with Ubuntu 18.04 and 20.04 as a host (NOT in virtual machine). someone had this error…
0
votes
2 answers

why vscode does not run in jetson after instalation?

I'm trying to run my code on jetson NX5, but even after installation of it, it won't run. even tried this command but still, have the same problem. git clone --recursive https://github.com/Microsoft/vscode.git Any Idea?
Ali Ganjbakhsh
  • 541
  • 7
  • 13
0
votes
0 answers

How to fix gstreamer v4l2src error when streaming video over usb?

I am using this command: gst-launch-1.0 v4l2src ! xvimagesink to stream video over usb on my nvidia jetson nano and I am getting this output: Setting pipeline to PAUSED... ERROR: Pipeline doesn't want to pause. ERROR: from element…
med1642
  • 1
  • 1
0
votes
1 answer

Gtk-WARNING **: cannot open display: localhost:10.0

I am on the new end of learning remote connections and I ran into a rather strange issue when connecting remotely to a machine. Host: Jetson Nano - Ubuntu Client: Asus desktop - Linux Mint I am using SSH to connect to the host machine. Once I'm in,…
Guten_Morgen
  • 1
  • 1
  • 1
  • 1
0
votes
1 answer

AssertionError: Some Python objects were not bound to checkpointed values on Jetson Nano with TensorRT

I am trying to run Inference on my Jetson Nano with TensorRT, but this Error keeps popping up. I dont really work with .pb model rather than .h5 models thats why I am converting my Model to .pb from .h5. I am using this script to convert my model to…
HWilmer
  • 458
  • 5
  • 14
0
votes
0 answers

H264 decoder for RTSP stream inside the docker

I am working on Nvidia Jetson AGX Xavier within Dockerized container…I want to take input from RTSP stream…it’s encoding type is H264 and .avi video input.The input stream frame size is 1920x1080 (in code I am resizing that into 1280x720) I have…
0
votes
1 answer

GStreamer: Multiple RTMP sources, Picture in Picture to mux on a Jetson Nano, then to be used with RTMP pipeline with Belabox

My goal is to have (2) RTMP sources in a Picture in Picture composition, encoding it into h265 mpegts, muxing audio from only the cam1 rtmp source, then sending it to the appsink; This is how I see it in my mind, but I'm probably wrong: [Confirmed]…
b3ck
  • 97
  • 1
  • 3
  • 10
0
votes
0 answers

What is the diffrence between "fragment" and "fragement"

I'm troubleshooting a device-tree and have come across the keywords "fragment" and "fragement" in my decompiled blob. At first, I thought it was a typo, but I see the same thing in dtb file provided by NVIDIA in the Linux for Tegra source code. I…
Lpaulson
  • 109
  • 2
  • 12
0
votes
0 answers

Gstreamer-OpenCV frame has black bar above it-How can i fix it?

I'm trying to capture video from a source using gstreamer pipeline and opencv. Source has properties as follows: ioctl:VIDIOC_ENUM_FMT index : 0 Type : Video capture Pixel Format : 'YUYV' Name : YUYV 4:2:2 My receiving pipeline is : ''' pipeAnalog =…
0
votes
1 answer

Could not find a version that satisfies the requirement Jetson.GPIO

Having issues trying to install the Jetson GPIO library. I keep getting this error WARNING: Discarding…
0
votes
1 answer

Pipeline works with "nveglglessink", but not with "ximagesink"

I am really new to GStreamer and DeepStream. I have a pipeline created based on deepstream-test1. This is the order in which the elements appeared: filesrc (an h264) -> h264parse -> nvv4l2decoder -> nvstreammux -> nvinfer -> nvvideoconvert ->…