![]() |
depth_anything_v2_ros2 package from depth_anything_v2_ros2 repodepth_anything_v2_ros2 |
Package Summary
Tags | No category tags. |
Version | 1.0.0 |
License | Apache-2.0 |
Build type | AMENT_PYTHON |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/grupo-avispa/depth_anything_v2_ros2.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2024-06-30 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Óscar Pons Fernández
Authors
- Óscar Pons Fernández
depth_anything_v2_ros2
Overview
This package is a ROS2 wrapper for the depth_anything_v2 library. It provides a ROS2 node that subscribes to a camera topic and publishes the depth map of the scene.
RGB | Depth | |
---|---|---|
![]() |
![]() |
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.
Installation
Building from Source
Dependencies
- Robot Operating System (ROS) 2 (middleware for robotics),
- depth_anything_v2 (library for depth estimation),
- torch (deep learning framework)
Building
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:
cd colcon_workspace/src
git clone https://github.com/grupo-avispa/depth_anything_v2_ros2.git -b main
cd depth_anything_v2_ros2
git submodule init
git submodule update
pip3 install -r requirements.txt
Before building, make sure to download the depth_anything_v2 model weights and place them in the models
directory. You can download them here.
Then, install the ROS2 dependencies using rosdep and build the package using:
cd colcon_workspace
rosdep install -i --from-path src --rosdistro humble -y
colcon build --symlink-install
Usage
With some RGB image source running, run the depth_anything_v2_ros2 node with:
ros2 launch depth_anything_v2_ros2 default.launch.py
Nodes
depth_anything
This node subscribes to a camera topic and publishes the depth map of the scene.
Subscribed Topics
-
camera/color/image_raw
(sensor_msgs/Image)The RGB image topic.
Published Topics
-
depth
(sensor_msgs/Image)The depth map estimated of the scene.
Parameters
-
image_topic
(string, default: “camera/color/image_raw”)Topic where the image will be subscribed.
-
depth_image_topic
(string, default: “depth”)Topic where the raw depth image will be published.
-
device
(string, default: “cuda:0”)Device to use for the inference (
cpu
orcuda
). -
model_file
(string, default: “depth_anything_v2_vits.pth”)Path to the model, located in the
models
directory. -
encoder
(string, default: “vits”)Encoder to use for the inference (
vits
,vitb
orvitl
).