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: README.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,6 +91,11 @@ All the parameters can be set via the launch file or via the yaml config_file.
91
91
*~max_rate_save (bool, default: false)
92
92
Flag for max rate mode which is when the master triggers the slaves and saves images at maximum rate possible. This is the multithreaded mode
93
93
94
+
### node/nodelet Specific Parameters
95
+
*~tf_prefix (string, default: "")
96
+
tf_prefix will be pre-fixed to (existing cam_*_optical_frame) frame id in ros Image msg and cameraInfo msg. default option doesn't add any prefix to frame id. eg: uas1/cam_0_optical_frame if tf_prefix:= uas1
97
+
98
+
94
99
### System configuration parameters
95
100
*~cam_ids (yaml sequence or array)
96
101
This is a list of camera serial numbers in the order which it would be organized. The convention is to start from left to right.
Copy file name to clipboardExpand all lines: launch/acquisition.launch
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -21,11 +21,13 @@
21
21
<argname="max_rate_save"default="false" doc="Flag for max rate mode which is when the master triggerst the slaves and saves images at maximum rate possible" />
22
22
<argname="config_file"default="$(find spinnaker_sdk_camera_driver)/params/test_params.yaml"doc="File specifying the parameters of the camera_array"/>
23
23
24
-
<!-- nodelet params-->
24
+
<!-- nodelet manager params-->
25
25
<argname="nodelet_manager_name"default="vision_nodelet_manager"doc="name of the nodelet manager, comes handy when launching multiple nodelets from different launch files" />
26
26
<argname="start_nodelet_manager"default="true"doc="If set to True(default), creates a nodelet manager with $(arg nodelet_manager_name).
27
27
If False, the acquisition/capture_nodelet waits for the nodelet_manager name $(arg nodelet_manager_name)" />
28
28
29
+
<!-- Capture nodelet params-->
30
+
<argname="tf_prefix"default=""doc="will prefix (arg tf_prefix)/ to existing frame_id in Image msg and camerainfo msg" />
29
31
<!-- start the nodelet manager if $(arg start_nodelet_manager) is true-->
Copy file name to clipboardExpand all lines: launch/acquisition_node.launch
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,8 +21,11 @@
21
21
<argname="utstamps"default="false" doc="Flag whether each image should have Unique timestamps vs the master cams time stamp for all" />
22
22
<argname="max_rate_save"default="false" doc="Flag for max rate mode which is when the master triggerst the slaves and saves images at maximum rate possible" />
23
23
<argname="config_file"default="$(find spinnaker_sdk_camera_driver)/params/test_params.yaml"doc="File specifying the parameters of the camera_array"/>
Copy file name to clipboardExpand all lines: launch/nodelet_subscriber_example.launch
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -21,14 +21,14 @@
21
21
<argname="max_rate_save"default="false"doc="Flag for max rate mode which is when the master triggerst the slaves and saves images at maximum rate possible" />
22
22
<argname="config_file"default="$(find spinnaker_sdk_camera_driver)/params/test_params.yaml"doc="File specifying the parameters of the camera_array"/>
23
23
24
-
<!-- nodelet params-->
24
+
<!-- nodelet manager params-->
25
25
<argname="nodelet_manager_name"default="vision_nodelet_manager"doc="name of the nodelet manager, comes handy when launching multiple nodelets from different launch files" />
26
26
<argname="start_nodelet_manager"default="false"doc="If set to True, creates a nodelet manager with $(arg nodelet_manager_name).
27
27
If False, the acquisition/capture_nodelet waits for the nodelet_manager name $(arg nodelet_manager_name)" />
28
28
29
-
29
+
<!-- Capture nodelet params-->
30
+
<argname="tf_prefix"default=""doc="will prefix (arg tf_prefix)/ to existing frame_id in Image msg and camerainfo msg" />
0 commit comments