Open ignacio-pm opened 20 hours ago
Hi @ignacio-pm There should only be one installation of librealsense on your computer, a package installation or a source code build, but not both types on the same computer. Otherwise, a conflict between the two librealsense installations could occur. So if you build librealsense from source with the RSUSB method, it should not be installed a second time from packages afterwards.
If you wish to attempt an installation of librealsense from packages on Jetson then the Jetson-specific packages on the Jetson instructions page at the link below must be used, not the ones on the distribution_linux.md instruction page.
This approach is recommended by the ROS wrapper's installation instructions.
Once librelsense has been sucessfully installed from packages then you can attempt an install of the ROS wrapper from packages for ROS2 Humble with the command below:
sudo apt install ros-humble-realsense2-*
Hi @MartyG-RealSense , I already tried installing from debian packages following the Jetson guide. When running rs-enumerate-devices in this case with the D455, it shows "No device detected. Is it plugged in?". This problem does not happen with the D435i. I fixed the problem by building the package from source using the RSUSB backend. Is there another possible workaround?
My first original question was if there is a way to install librealsense with the RSUSB backend from debian packages. I guess not because there nothing mentioned in the documentation.
My second and main question is if it is possible to install the ROS 2 wrapper from the debian packages, after installing librealsense from source. I tried installing ros-humble-realsense2-* and sudo apt-get does not understand that librealsense is already installed (from source). Therefore, sudo apt-get installs ros-humble-librealsense2, which duplicates the library, and as you mentioned, this should not happen. I would want to link the source built librealsense package to be detected by the debian package from ROS 2 wrapper so that ros-humble-librealsense2 is not installed and the wrapper uses the librealsense package, previously built from source.
Is your Jetson is using JetPack 6 please? If it is then then this can cause RealSense cameras with an IMU not to be detected. This is because JP6 removed a component called hiddraw that the camera needs. The workarounds are to use JP 5.1.3, build from source with libuvc backend / RSUSB backend, or to perform a complicated installation of a MIPI driver at the link below to add IMU support.
https://github.com/IntelRealSense/realsense_mipi_platform_driver
If possible, I would recommend continuing with the RSUSB source code method that is working for you.
If you have installed librealsense from source code then would it be possible for you to also install the ROS2 wrapper from source code using the colcon build method in Step 3 , 'Option 2: Install from source'
My experience is that ROS wrapper installations tend to go better when using the same type of install method for both librealsense and the ROS wrapper rather than using packages for one and source for the other. The IMU issue with JP6 on Jetson tends to mean though that when using JP6, librealsense has to be built from source with a libuvc or RSUSB build, preventing the option to install librealsense from packages.
Issue Description
Hi, I use a Realsense camera D455 with a Jetson Orin. In order to make it work, I need to install librealsense from source with the RSUSB patch (using this script). If installed from apt packages the camera D455 is not detected ( although a camera D435i is detected).
I would like to use the camera with the ROS 2 wrapper. If I install the wrapper from source, it works without problems. However, if I install it with debian packages, it does not recognize that librealsense was installed from source and it is overridden. This makes the wrapper to stop working because the librealsense that is installed through sudo apt-get does not have the RSUSB patch.
Is there a way to install the ROS 2 wrapper from debian packages after installing librealsense from source or to install librealsense from debian packages with the RSUSB patch?
Thanks in advance for the response.