File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -68,28 +68,30 @@ To use and learn to use `ros2_benchmark`, start by running a sample benchmark. F
6868 ` ` ` bash
6969 export R2B_WS_HOME=~ /ros_ws && \
7070 export ROS2_BENCHMARK_OVERRIDE_ASSETS_ROOT=$R2B_WS_HOME /src/ros2_benchmark/assets && \
71- sudo apt-get update && sudo apt-get install -y git wget
71+ sudo apt-get update && sudo apt-get install -y git git-lfs wget
7272 ` ` `
7373
74743. Clone this repository along with an available implementation of Apriltag detection and install dependencies.
7575
7676 ` ` ` bash
7777 mkdir -p $R2B_WS_HOME /src && cd $R2B_WS_HOME /src && \
7878 git clone https://github.com/NVIDIA-ISAAC-ROS/ros2_benchmark.git && \
79- git clone https://github.com/christianrauch/apriltag_ros.git && \
79+ git clone https://github.com/christianrauch/apriltag_ros.git && \
8080 cd $R2B_WS_HOME && \
8181 sudo apt-get update && \
8282 rosdep install -i -r --from-paths src --rosdistro humble -y
8383 ` ` `
8484
85- 4. Clone, and build ` image_proc` package.
85+ 4. Clone, and build ` image_proc` package with patch to fix incompatible QoS settings .
8686
8787 ` ` ` bash
8888 cd $R2B_WS_HOME /src && \
8989 git clone https://github.com/ros-perception/vision_opencv.git && cd vision_opencv && git checkout humble && \
9090 cd $R2B_WS_HOME /src && \
9191 git clone https://github.com/ros-perception/image_pipeline.git && cd image_pipeline && git checkout humble && \
9292 git config user.email " benchmarking@ros2_benchmark.com" && git config user.name " ROS 2 Developer" && \
93+ wget https://raw.githubusercontent.com/NVIDIA-ISAAC-ROS/ros2_benchmark/main/resources/patch/resize_qos_profile.patch && \
94+ git apply resize_qos_profile.patch && \
9395 cd $R2B_WS_HOME && \
9496 sudo apt-get update && \
9597 rosdep install -i -r --from-paths src --rosdistro humble -y && \
You can’t perform that action at this time.
0 commit comments