RealSense D435i
Ubuntu Installation
Install
librealsense2
according to this official GitHub repositorymake sure install
librealsense2-dev
as well because it will provide cmake supportdo not use
ros-melodic-librealsense2
library
Install
ddynamic_reconfigure
bysudo apt install ros-melodic-ddynamic-reconfigure
git clone
realsense-ros
package to workspace and catkin_make
Notes for Jetson devices
For Jetson devices, there is no
librealsense2-dkms
package available; only need to installlibrealsense2-utils
andlibrealsense2-dev
. (installation_jetson)During building process,
cv_bridge
expects/usr/include/opencv
but on Jetson systems it's under/usr/include/opencv4/opencv2
. To resolve this, create a symbolic link to the directoriessudo ln -s /usr/include/opencv4/ /usr/include/opencv
.
Collect rosbag
Last updated