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
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,11 @@
1
1
LATEST CHANGES
2
2
==============
3
3
4
+
2023-01-24
5
+
----------
6
+
- The parameter `general.sdk_verbose` has been moved to `debug.sdk_verbose` and set to `0` as default.
7
+
- Add new parameter `general.optional_opencv_calibration_file` to use custom OpenCV camera calibrations.
8
+
4
9
2023-12-21
5
10
----------
6
11
- Add [new tutorial](https://github.com/stereolabs/zed-ros2-examples/tree/master/tutorials/zed_robot_integration) to illustrate how to integrate one or more ZED cameras on a robot
Copy file name to clipboardExpand all lines: zed_wrapper/config/common.yaml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,11 @@
1
1
# config/common_yaml
2
2
# Common parameters to Stereolabs ZED and ZED mini cameras
3
-
#
4
-
# Note: the parameter svo_file is passed as exe argumet
3
+
5
4
---
6
5
/**:
7
6
ros__parameters:
8
7
9
-
use_sim_time: false # Set to `true` only if there is a publisher for the simulated clock to the `/clock` topic
8
+
use_sim_time: false # Set to `true` only if there is a publisher for the simulated clock to the `/clock` topic. Normally used in simulation mode.
10
9
11
10
simulation:
12
11
sim_enabled: false # Set to `true` to enable the simulation mode and connect to a simulation server
@@ -25,11 +24,11 @@
25
24
pub_downscale_factor: 2.0# rescale factor used to rescale image before publishing when 'pub_resolution' is 'CUSTOM'
26
25
pub_frame_rate: 15.0# frequency of publishing of visual images and depth images
27
26
gpu_id: -1
27
+
optional_opencv_calibration_file: ''# Optional path where the ZED SDK can find a file containing the calibration information of the camera computed by OpenCV. Read the ZED SDK documentation for more information: https://www.stereolabs.com/docs/api/structsl_1_1InitParameters.html#a9eab2753374ef3baec1d31960859ba19
28
28
region_of_interest: '[]'# A polygon defining the ROI where the ZED SDK perform the processing ignoring the rest. Coordinates must be normalized to '1.0' to be resolution independent.
29
29
#region_of_interest: '[[0.25,0.33],[0.75,0.33],[0.75,0.5],[0.5,0.75],[0.25,0.5]]' # A polygon defining the ROI where the ZED SDK perform the processing ignoring the rest. Coordinates must be normalized to '1.0' to be resolution independent.
30
30
#region_of_interest: '[[0.25,0.25],[0.75,0.25],[0.75,0.75],[0.25,0.75]]' # A polygon defining the ROI where the ZED SDK perform the processing ignoring the rest. Coordinates must be normalized to '1.0' to be resolution independent.
31
31
#region_of_interest: '[[0.5,0.25],[0.75,0.5],[0.5,0.75],[0.25,0.5]]' # A polygon defining the ROI where the ZED SDK perform the processing ignoring the rest. Coordinates must be normalized to '1.0' to be resolution independent.
32
-
sdk_verbose: 1
33
32
34
33
video:
35
34
brightness: 4# [DYNAMIC] Not available for ZED X/ZED X Mini
@@ -169,6 +168,7 @@
169
168
thread_pointcloud_priority: 60# ONLY with 'SCHED_FIFO' and 'SCHED_RR' - [1 (LOW) z-> 99 (HIGH)] - NOTE: 'sudo' required
170
169
171
170
debug:
171
+
sdk_verbose: 0# Set the verbose level of the ZED SDK
0 commit comments