On your host system place this udev rule in /etc/udev/rules.d
Install distrobox
along with either podman
or docker
(Rootless podman is cleanest but will work with less setup if you already have docker running)
https://github.com/89luca89/distrobox?tab=readme-ov-file#installation
Then we can create a container with the official rtabmap image
distrobox create --image docker.io/introlab3it/rtabmap:jammy
Enter the new container
distrobox enter rtabmap-jammy
Source the ROS environment and create a working directory
source /opt/ros/humble/setup.bash
mkdir R200
cd R200
Clone and build librealsense at the latest v1 tag (v2 dropped support for the old sensors including the R200)
git clone https://github.com/IntelRealSense/librealsense
cd librealsense
git checkout v1.12.4
mkdir build
cd build
cmake ..
make -j8
sudo make install
cd ../..
Clone and build RTAB-Map
git clone https://github.com/introlab/rtabmap.git
cd rtabmap/build
cmake ..
At this point make sure the compile output says it's building the Realsesne 1 support (should automatically pick up what we installed earlier)
Assuming that's found
make -j8
sudo make install
Now you can run rtabmap
Go to Detection > Select source > RGB-D > R200 > Check RealSense
File > Save Config so you don't have to do this again
File > New Database
Click the play button
If all goes well, you should start mapping with real-time SLAM!
Click stop to stop and visualize the capture.
Semi related... Installing Docker on Linux Mint 21.3 requires this patch to the docker install
https://forums.linuxmint.com/viewtopic.php?p=2495607&sid=4e703091fdbc5f239414f0bc24217879#p2495607
I wanted to setup docker on this machine for other projects, and realized I hadn't done it yet.