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
config_file_path:=gemini330_series.yaml means orbbec_camera.launch.py uses the parameters set in gemini330_series.yaml
29
+
30
+
## Launch parameters
31
+
32
+
For the definition and function of launch parameters, please refer to common.yaml. All open parameters are in common.yaml.The following is a partial common.yaml display:
33
+
34
+
```yaml
35
+
# config/*.yaml files are used to configure the camera parameters
36
+
---
37
+
orbbec_ros:
38
+
camera_parameters:
39
+
general:
40
+
# Camera model. upport product models by referencing config/*.yaml
41
+
camera_model: "gemini330_series"
42
+
# The configuration file for yaml params.
43
+
config_file_path: "gemini330_series.yaml"
44
+
# Log level. Supported levels are 'debug', 'info', 'warning' and 'error'. Default is 'none'.
45
+
log_level: "none"
46
+
47
+
deivce:
48
+
# camera name, usually overwritten by launch file
49
+
camera_name: "camera"
50
+
# camera serial number, usually overwritten by launch file
51
+
serial_number: ""
52
+
# The USB port of the camera. This parameter is required when using multiple cameras.
53
+
usb_port: ""
54
+
# Number of devices. If multiple cameras are required, this parameter must be filled in launch file
55
+
device_num: 1
56
+
# Optional values: v4l2, libuvc
57
+
uvc_backend: "libuvc"
58
+
# Usually no need to change
59
+
vendor_id: "0x2bc5"
60
+
```
61
+
62
+
Notice:If you run orbbec_camera.launch.py, the default combination of launch parameters used is common.yaml+gemini330_series.yaml, and the parameters in gemini330_series.yaml have higher priority than common.yaml
63
+
30
64
## Visualizing data in rviz2
31
65
32
66
- view_display launch
@@ -113,7 +147,7 @@ Save point cloud:
113
147
ros2 service call /camera/save_point_cloud std_srvs/srv/Empty "{}"
114
148
```
115
149
116
-
150
+
117
151
118
152
## Example visualizations
119
153
@@ -123,13 +157,101 @@ Here are examples of how the visualization might appear in rviz2:
123
157
124
158

125
159
126
-
160
+
127
161
128
162
- **Image Data Visualization**
129
163
130
164

131
165
132
-
166
+
167
+
168
+
## Aligning Depth to Color
169
+
170
+
### Commands to Align and View Depth and Color Images
171
+
172
+
1. **Basic Depth to Color Alignment:**
173
+
To simply align the depth image to the color image, use the following command:
0 commit comments