Intel RealSense D435i Not Detected on Jetson Orin Nano with JetPack 6.0 and SDK Version 2.55.1

Hello,

I’m having trouble using the Intel RealSense D435i camera with my Jetson Orin Nano Developer Kit running JetPack 6.0. I downloaded and installed the RealSense SDK (version 2.55.1) following the recommended steps, and I can open the RealSense Viewer successfully. However, the camera is not being detected by the RealSense Viewer.

Here’s a summary of my setup:

Jetson Orin Nano Developer Kit
JetPack 6.0
RealSense SDK version 2.55.1
Intel RealSense D435i

Things I’ve tried:

  • Verified that the camera works on another device, so the hardware is functioning.
  • Ran lsusb and dmesg, and the camera shows up in the device list, indicating that the system is recognizing the USB device.
  • Ran ‘rs-enumerate-devices’ and got ‘no device detected’
  • Reinstalled the RealSense SDK multiple times, but the camera still isn’t detected by the RealSense Viewer.

Has anyone faced similar issues with JetPack 6.0 or the Jetson Orin Nano? Are there any specific steps or patches required to get the RealSense D435i working?

I would appreciate any guidance or troubleshooting tips to resolve this.

Thanks in advance!

1 Like

Hi,
Please check

Jetson AGX Orin FAQ
Q: How to run realsense camera on Orin devices?

D435i has IMU sensor and please check the vendor’s guidance to enable kernel driver.

hey,

$ sudo apt update && sudo apt install -y --no-install-recommends build-essential cmake git libbullet-dev libpython3-dev \
  libasio-dev libtinyxml2-dev libcunit1-dev libboost-python-dev libgtk-3-dev  libcurl4-openssl-dev libcurl4 libssl-dev \
  libusb-1.0-0-dev pkg-config libglfw3-dev libgl1-mesa-dev libglu1-mesa-dev vim htop sudo python3-pip
$ sudo python3 -m pip install pybind11
$ wget https://github.com/IntelRealSense/librealsense/archive/refs/tags/v2.50.0.tar.gz
$ tar xpf v2.50.0.tar.gz && cd librealsense-2.50.0 && ./scripts/setup_udev_rules.sh
$ mkdir build && cd build
$ CUDACXX=/usr/local/cuda-11.4/bin/nvcc cmake ../ \
        -DBUILD_PYTHON_BINDINGS:bool=true \
        -DBUILD_WITH_CUDA=true \
        -DFORCE_RSUSB_BACKEND=false \
        -DPYTHON_EXECUTABLE=/usr/bin/python3 \
        -DCMAKE_BUILD_TYPE=Release
$ make -j4
$ sudo make install
$ ls /usr/lib/python3/dist-packages/pyrealsense2

I tried the code from the forum you shared, but when I attempt to run it, I encounter issues.

./scripts/setup_udev_rules.sh

im getting this error:

I resolved the issue by switching to a superuser (using sudo). After that, everything ran smoothly. However, I’m still unable to get the camera to work

i don’t get any thing when i run
$rs-enumerate-devices

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.