You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -11,14 +11,14 @@ This package is a ROS2 wrapper for the [depth_anything_v2](https://github.com/De
11
11
|||
12
12
13
13
14
-
The depth_anything_v2_ros2 package has been tested under [ROS2]Humble on [Ubuntu] 22.04. This is research code, expect that it changes often and any fitness for a particular purpose is disclaimed.
14
+
The depth_anything_v2_ros2 package has been tested under [ROS2]jazzy on [Ubuntu] 22.04. This is research code, expect that it changes often and any fitness for a particular purpose is disclaimed.
15
15
16
16
## Installation
17
17
### Building from Source
18
18
19
19
#### Dependencies
20
20
21
-
-[Robot Operating System (ROS) 2](https://docs.ros.org/en/humble/) (middleware for robotics),
21
+
-[Robot Operating System (ROS) 2](https://docs.ros.org/en/jazzy/) (middleware for robotics),
22
22
-[depth_anything_v2](https://github.com/DepthAnything/Depth-Anything-V2) (library for depth estimation),
@@ -27,19 +27,15 @@ The depth_anything_v2_ros2 package has been tested under [ROS2] Humble on [Ubunt
27
27
To build from source, clone the latest version from the main repository into your colcon workspace and install the python dependencies by running the following commands:
28
28
```bash
29
29
cd colcon_workspace/src
30
-
git clone https://github.com/grupo-avispa/depth_anything_v2_ros2.git -b main
31
-
cd depth_anything_v2_ros2
32
-
git submodule init
33
-
git submodule update
34
-
cd ..
30
+
git clone --recurse-submodules https://github.com/grupo-avispa/depth_anything_v2_ros2.git -b main
35
31
pip3 install -r requirements.txt
36
32
```
37
33
Before building, make sure to download the depth_anything_v2 model weights and place them in the `models` directory. You can download them [here](https://huggingface.co/depth-anything).
38
34
39
35
Then, install the ROS2 dependencies using rosdep and build the package using:
0 commit comments