Questions tagged [jetson-xavier]

The NVIDIA Jetson AGX Xavier is an AI computer for autonomous machines.

75 questions
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
0 answers

PyQt5 fullscreen unwanted behavior on ubuntu

I'm running a pyqt5 application on an ubuntu and when the app is in full screen mode, I get this behavior of the dock and title bar popping over the application when a dialog box is clicked. When the dialog box is closed, everything goes back to…
SorinT
  • 53
  • 1
  • 6
0
votes
0 answers

error: (-5:Bad argument) CAP_IMAGES: can't find starting number (in the name of file): in function 'cv::icvExtractPattern'

I'm trying to publish an RTSP Stream from a Jetson AGX Board using Intel RealSense Cameras and receive the stream on a remote device using Yolov5 (on the same VLAN). RTSP server is running on the jetson board Simple RTSP (IP…
Omar Jarkas
  • 100
  • 5
0
votes
1 answer

YOLOv5, TensorRT export with Jetson AGX Xavier

I want to export TensorRT model(ex. yolov5s.engine) with Jetson AGX Xavier. But when I try below page, I got some error messages. https://github.com/ultralytics/yolov5/issues/251 [TensorRT] WARNING: Skipping tactic 3 due to oom error on requested…
SJ Moon
  • 41
  • 6
0
votes
5 answers

Jetson AGX Xavier python3 matplotlib 3.3.4 installation error

I want to use yolov5 at my Jetson AGX Xavier developer kit and I have to upgrade matplotlib to version 3.3.4 highest version that python3.6 support. I'm using python version 3.6.9(default of Jetson AGX Xavier) and python3.6 support matplotlib…
0
votes
1 answer

Improve performance Gstreamer pipeline for webrtc in Jetson AGX

I have one applications in c++ to get the video using gstreamer from a camera and then send the video via UDP to another application in c++ that gets the video and makes the restreaming using webrct. Everything under a jetson AGX. If i get the data…
VictorCB
  • 70
  • 10
0
votes
2 answers

GPutil not working properly on NVIDIA Jetson Xavier NX

I've written code that collects telemetry information from the device and saves it in a .csv file. However, I'm not able to detect the GPU from the GPUtil: import GPUtil GPU =…
whoisraibolt
  • 2,082
  • 3
  • 22
  • 45
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

undefined reference to `zmq_ctx_new' when compiling using makefile

I installed zmq on my linux-ubuntu flavoured NVIDIA Jetson Xavier as follows: sudo apt-get install libzmq3-dev I created a simple ZMQ server that uses PUSH/PULL architecture in a C++ program. I am able to compile it using CLI as follows: $ gcc…
Pe Dro
  • 2,651
  • 3
  • 24
  • 44
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

Import dlib on Jetson NX got Illegal instruction (core dumped)

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
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
0 answers

Connecting a CANopen device to ubuntu

I am trying to connect a CANopen motor driver to Ubuntu to control the driver. I used the CANopenNode package and then I connected the two drivers and connected a two 120 ohms resistors at both ends of the bus and I am using a Nvidia AGX Xavier as a…