Skip to content

Commit 829f1d2

Browse files
committed
Restore docs
1 parent 9177191 commit 829f1d2

File tree

150 files changed

+581
-4515
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+581
-4515
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -764,8 +764,6 @@ FodyWeavers.xsd
764764
# JetBrains Rider
765765
*.sln.iml
766766

767-
docs/
768-
_html/
769767

770768
### VisualStudio Patch ###
771769
# Additional files built by Visual Studio

docs/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

docs/.gitlab-ci.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

docs/.nojekyll

Whitespace-only changes.

docs/Makefile

Lines changed: 0 additions & 20 deletions
This file was deleted.

docs/README.md

Lines changed: 0 additions & 87 deletions
This file was deleted.

docs/align_depth_color.MD

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
## Aligning Depth to Color in ROS 2
2+
3+
This section explains how to align depth images with color images to create an overlay image using ROS 2. This is particularly useful for applications requiring synchronized visual information from different sensor modalities.
4+
5+
### Commands to Align and View Depth and Color Images
6+
7+
1. **Basic Depth to Color Alignment:**
8+
9+
To simply align the depth image to the color image, use the following command:
10+
11+
```bash
12+
ros2 launch orbbec_camera gemini_330_series.launch.py depth_registration:=true
13+
```
14+
15+
This command activates the depth registration feature without opening a viewer.
16+
17+
2. **Viewing Depth to Color Overlay:**
18+
19+
If you wish to view the depth to color overlay, you need to enable the viewer by using the command below:
20+
21+
```bash
22+
ros2 launch orbbec_camera gemini_330_series.launch.py depth_registration:=true enable_d2c_viewer:=true
23+
```
24+
25+
This launches the camera node with depth to color registration and opens a viewer to display the overlay image.
26+
27+
### Selecting Topics in RViz2
28+
29+
To visualize the aligned images in RViz2:
30+
31+
1. Launch RViz2 after running one of the above commands.
32+
2. Select the topic for the depth to color overlay image. An example topic selection is shown here:
33+
34+
![Topic Selection for Depth to Color Overlay](./images/image3.png)
35+
36+
### Example of Depth to Color Overlay
37+
38+
After selecting the appropriate topic in RViz2, you will be able to see the depth to color overlay image. Here's what it might look like:
39+
40+
![Depth to Color Overlay Image](./images/image4.jpg)

docs/align_depth_color_CN.MD

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
## 在ROS 2中将深度图像与彩色图像对齐
2+
3+
本节介绍如何使用ROS 2将深度图像与彩色图像对齐,以创建叠加图像。这对于需要来自不同传感器模态的同步视觉信息的应用程序特别有用。
4+
5+
### 对齐并查看深度和彩色图像的命令
6+
7+
1. **基本的深度到彩色对齐:**
8+
9+
要简单地将深度图像对齐到彩色图像,使用以下命令:
10+
11+
```bash
12+
ros2 launch orbbec_camera gemini_330_series.launch.py depth_registration:=true
13+
```
14+
15+
此命令激活深度注册功能,但不打开查看器。
16+
17+
2. **查看深度到彩色叠加:**
18+
19+
如果您希望查看深度到彩色叠加,您需要通过使用以下命令来启用查看器:
20+
21+
```bash
22+
ros2 launch orbbec_camera gemini_330_series.launch.py depth_registration:=true enable_d2c_viewer:=true
23+
```
24+
25+
这将启动具有深度到彩色注册的相机节点,并打开一个查看器以显示叠加图像。
26+
27+
### 在RViz2中选择主题
28+
29+
要在RViz2中可视化对齐的图像:
30+
31+
1. 在运行上述命令之一后启动RViz2。
32+
2. 选择深度到彩色叠加图像的主题。这里显示了一个示例主题选择:
33+
34+
![深度到彩色叠加主题选择](./images/image3.png)
35+
36+
### 深度到彩色叠加示例
37+
38+
在RViz2中选择合适的主题后,您将能够看到深度到彩色叠加图像。这是它可能看起来的样子:
39+
40+
![深度到彩色叠加图像](./images/image4.jpg)

docs/autobuild.sh

Lines changed: 0 additions & 172 deletions
This file was deleted.

0 commit comments

Comments
 (0)