In this tutorial, we will explore the method for offloading computationally intensive processes, such as running computer vision models, to a remote workstation computer. This approach offers several advantages such as:
We will delve into the process of offloading Stretch Deep Perception ROS2 nodes. These nodes are known for their demanding computational requirements and are frequently used in Stretch Demos.
NOTE: All Stretch ROS2 packages are developed with Humble distro.
ROS2 utilizes DDS as the default middleware for communication. DDS enables nodes within the same physical network to seamlessly discover one another and establish communication, provided they share the same ROS_DOMAIN_ID. This powerful mechanism ensures secure message passing between remote nodes as intended.
By default, all ROS 2 nodes are configured with domain ID 0. To avoid conflicts, select a domain ID from the range of 0 to 101, and then set this chosen domain ID as the value for the ROS_DOMAIN_ID
environment variable in both the Workstation and the Robot.
export ROS_DOMAIN_ID=<ID>
The workstation needs to be installed with the stretch related ros2 packages to have access to robot meshes for Visualization in Rviz, custom interfaces dependencies and essential perception packages.
This section assumes the workstation already has an active ROS2 distro and colcon dependencies pre-installed. You can find ROS2 Installation step for Ubuntu here.
Make sure the ROS2 distro is sourced.
source /opt/ros/humble/setup.bash
Create workspace directory and clone stretch_ros2 packages along with it's dependency packages to src
folder.
mkdir -p ~/ament_ws/src
cd ~/ament_ws/src/
git clone https://github.com/hello-robot/stretch_ros2
git clone https://github.com/hello-binit/ros2_numpy -b humble
git clone https://github.com/IntelRealSense/realsense-ros.git -b ros2-development
git clone https://github.com/Slamtec/sllidar_ros2.git -b main
git clone https://github.com/hello-binit/respeaker_ros2.git -b humble
git clone https://github.com/hello-binit/audio_common.git -b humble
Build and install all the packages present in source folder.
cd ~/ament_ws
rosdep install --rosdistro=humble -iyr --skip-keys="librealsense2" --from-paths src
colcon build --cmake-args -DCMAKE_BUILD_TYPE=Release
Make sure to source the workspace to discover the packages in it.
source ~/ament_ws/install/setup.bash
All the robots will have calibrated URDF with pre-configured mesh files in the stretch_description package directory that is specific to your actual robot. So we recommend you to copy the stretch_description
directory that exists inside your robot and replace it with the one existing in the workstation. The Stretch Description directory exists in the path ~/ament_ws/src/stretch_ros2/stretch_description
.
If you dont want to use the URDFs from the robot, you can manually generate the uncalibrated URDF w.r.t your robot configuration using the following commands:
cd ~/ament_ws/src/stretch_ros2/stretch_description/urdf/
#if Dex-Wrist Installed
cp stretch_description_dex.xacro stretch_description.xacro
#if Standard Gripper
cp stretch_description_standard.xacro stretch_description.xacro
ros2 run stretch_calibration update_uncalibrated_urdf
cp stretch_uncalibrated.urdf stretch.urdf
After setting up the stretch_description folder, re-build the workspace to update the package with latest changes.
cd ~/ament_ws
colcon build
stretch_deep_perception_models provides open deep learning models from third parties for use. We are cloning this directory to the home folder in the workstation.
cd ~/
git clone https://github.com/hello-robot/stretch_deep_perception_models
Start the core driver nodes for controlling the robot, streaming the Lidar and realsense depth camera/s data using the stretch_core package.
# Terminal 1: Start the Stretch Driver Node
ros2 launch stretch_core stretch_driver.launch.py
# Terminal 2: Start the realsense D435i stream.
ros2 launch stretch_core d435i_high_resolution.launch.py
# Terminal 3: Start lidar.
ros2 launch stretch_core rplidar.launch.py
After launching the above core nodes, all the robot control interfaces and sensor data streams should be exposed to all the other nodes in the same physical network with common ROS_DOMAIN_ID set.
From the remote workstation try the following test commands:
# Check if all robot topics are visible.
ros2 topic list
# Check if able to receive a sensor data by printing from Joint States topic.
ros2 topic echo /joint_states
# Check if able to send commands to robot by triggering stow_the_robot service
ros2 service call /stow_the_robot std_srvs/srv/Trigger
From the workstation, run the object detection node which runs a YoloV5 model.
ros2 run stretch_deep_perception detect_objects
The node would start printing out the detected objects.
Fusing layers...
YOLOv5s summary: 213 layers, 7225885 parameters, 0 gradients
Adding AutoShape...
[INFO] [1698379209.925727618] [DetectObjectsNode]: DetectObjectsNode started
tv detected
keyboard detected
chair detected
mouse detected
mouse detected
tv detected
keyboard detected
chair detected
mouse detected
mouse detected
bowl detected
tv detected
keyboard detected
chair detected
mouse detected
mouse detected
rviz2 -d ~/ament_ws/install/stretch_deep_perception/share/stretch_deep_perception/rviz/object_detection.rviz
From the workstation, run the face detection node. The face-detection node uses model parameters loaded from the stretch_deep_perception_models directory, whose path is pulled from HELLO_FLEET_PATH environment variable. In our case, we will set the HELLO_FLEET_PATH environment variable to point to the home folder where the stretch_deep_perception_models directory was cloned.
export HELLO_FLEET_PATH=~/
ros2 run stretch_deep_perception detect_faces
The node will load the face detection model network and start poblishing the detection.
head_detection_model.getUnconnectedOutLayers() = [112]
head_detection_model output layer names = ['detection_out']
head_detection_model output layer names = ('detection_out',)
head_detection_model input layer = <dnn_Layer 0x7f7d1e695cd0>
.
.
.
landmarks_model input layer name = align_fc3
landmarks_model out_layer = <dnn_Layer 0x7f7d1e695d30>
[INFO] [1698383830.671699923] [DetectFacesNode]: DetectFacesNode started
rviz2 -d ~/ament_ws/install/stretch_deep_perception/share/stretch_deep_perception/rviz/face_detection.rviz
ifconfig
command and compare the Network assigned IP addresses of both the robot and workstation. The first two parts of the IP address should normally match for both computers to discover each other in the network.