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
1 answer

How to stream 4k video in jetson xavier using udpsink in gstreamer

I am using a jetson xavier NX and i have connected 4k camera to it. I want to stream 4k video using gstreamer and RTP and store the streamed video data as an mkv file on another jetson. However my data is getting compressed a lot and I am not able…
Akshay Acharya
  • 253
  • 4
  • 13
0
votes
1 answer

How to capture a raw image (.png) using a nvargus camera in gstreamer

I am trying to capture a raw 4k image for my AI application using a 4k camera shown here. I want to capture a frame every 5 seconds and store it as a .png file which I will later run through my neural network for detection. I know the ommand to…
0
votes
1 answer

No module found torch

I am using jetson NX xavier kit having cuda 10.2.89, open Cv 4.1.1 and tensorRT 7.1.3 . Trying to install pytorch. Tried installing with this line conda install pytorch torchvision cpuonly -c pytorch but when i write this line import torch It…
0
votes
1 answer

DJI Manifold 2 (running on nvidia jetson tx2) USB devices cannot work after updating with Ubuntu's software update

After installing jetpack 4.4 on the DJI manifold 2G (Nvidia jetson tx2 version), the internal Ubuntu software updater pings me for a 2.3GB sized update. Following which, after completing the update, all USB ports are non-responsive, and the…
fatbringer
  • 348
  • 2
  • 9
  • 19
0
votes
0 answers

How to build open3d from source on l4t-base:r32.5.0 IMG?

I've been trying to build open3d from source on the l4t-base:r32.5.0 IMG from NVIDIA for quite some time now and have basically searched the whole internet for a script/guide, but I can't seem to find anything or get it to work myself. Following the…
kronos
  • 26
  • 3
0
votes
1 answer

Import dlib on Jetson NX got undefined symbol: png_riffle_palette_neon

JetPack version: 4.6 I am trying to use dlib (GPU) on Jetson Xavier NX, following are my steps to install dlib dowload repo: https://github.com/davisking/dlib cd dlib-master mkdir build cd build/ cmake .. -DDLIB_USE_CUDA=1…
0
votes
1 answer

cannot install anaconda on jetson agx xavier

[/home/aimotion/anaconda3] >>> PREFIX=/home/aimotion/anaconda3 Unpacking payload ... /home/aimotion/Downloads/Anaconda3-2021.05-Linux-x86_64 (1).sh: line 381: /home/aimotion/anaconda3/conda.exe: cannot execute binary file: Exec format…
user17119005
0
votes
1 answer

Can I run a normal tensorflow object detection model on Jetson board without using TensorRT?

Is it possible to run the inference graph on the jetson board without converting it into TensorRT format as mentioned in the github repo ? Will we be able to run the Tensorflow Object Detection API without using TensorRT on the Jetson board?
0
votes
0 answers

Conda environment missing dependencies when trying to download THOR tracker

I am new to linux in general and I've recently got into vision coding. I am trying to download the THOR real time tracker from https://github.com/xl-sr/THOR. While trying to make the conda environment I have got a missing dependencies…
Elad-sh
  • 1
  • 1
0
votes
0 answers

ffmpeg naming output file with custom name

I am using ffmpeg on JEtson Xavier NX to split a video into frames as follows ffmpeg -i input.mkv -r 30 %2d.jpg This generates output as 1.jpg 2.jpg 3.jpg...etc However I want to start the counter from a custom number and not 1. For…
Akshay Acharya
  • 253
  • 4
  • 13
0
votes
1 answer

TRT versus TF-TRT

I need to convert some models to be able to deploy them on jetson devices. I have tried the TensorRT for Yolov3 trained on coco 80, but I wasn't successful to inference it so I decided to do the TF-TRT. It worked on my laptop, the FPS is increased…
Shabnam
  • 73
  • 1
  • 1
  • 5
0
votes
1 answer

How to use servoKit library and GPIO pins

I have been struggling because of the library adafruit_servokit has been stopping me from assigning pins. When I try to do this: from adafruit_servokit import ServoKit # Servo library that works with Jetson import RPi.GPIO as GPIO #…
0
votes
0 answers

Spyder imports numpy from the wrong python environment

I want to import opencv in spyder using the IPython console. However, when I try to do this, I get an import error on numpy. Platform: Jetson xavier Spyder version: 3.2.6 I'm using 'virtualenv' to manage my virtual environment. What works: I can…
Thijs Ruigrok
  • 547
  • 2
  • 12
0
votes
1 answer

Python Code to play a video in Nvidia Jetson Nano

I am using Nvidia Jetson Nano to stream and play videos through a python code. But what I have seen is that my CPU usage is going pretty high, and it is not having much impact on its GPU. So this will cause me a problem as I will not be able to…
0
votes
1 answer

Multiprocessing on Jetson NANO

I'm trying to run a simple multiprocessing system on a Jetson NANO device, flashed with Jetpack 4.5. I'm doing what I would usually do on a computer, so I have a main script, launcher.py launcher.py import multiprocessing as mp from multiprocessing…
Carlo
  • 1,321
  • 12
  • 37