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
added target_gray_value to params and launch file, fixed dynamic reconfigure to make changes for all cameras instead of just master cam, dynamic reconfigure now loads params in nodelet/node namspace correctly, variable names changed for dynamic recfg server and target grayvalue
Setting target_grey_value > 4 (min:4 , max:99) will turn AutoExposureTargetGreyValueAuto to 'off' and set AutoExposureTargetGreyValue to target_grey_value. Also available as dynamic reconfigurable parameter. see below in Dynamic reconfigurable parameter section.
69
71
*~frames (int, default: 50)
70
72
Number of frames to save/view 0=ON
71
73
*~live (bool, default: false)
@@ -103,11 +105,11 @@ This is the names that would be given to the cameras for filenames and rostopics
103
105
104
106
105
107
### Dynamic Reconfigure parameters
106
-
*~target_grey_val (double)
108
+
*~target_grey_value (double)
107
109
Target Grey Value is a parameter that helps to compensate for various lighting conditions by adjusting brightness to achieve optimal imaging results. The value is linear and is a percentage of the maximum pixel value.
108
110
Explained in detail at [FLIR webpage](https://www.flir.com/support-center/iis/machine-vision/application-note/using-auto-exposure-in-blackfly-s/).
109
111
110
-
Setting target_grey_val invokes setting AutoExposureTargetGreyValueAuto to 'off' and AutoExposureTargetGreyValue is set to target_grey_val.
112
+
Setting target_grey_value invokes setting AutoExposureTargetGreyValueAuto to 'off' and AutoExposureTargetGreyValue is set to target_grey_value.
111
113
*~exposure_time (int, default= 0, 0:auto)
112
114
Exposure time for the sensor.
113
115
When Exposure time is set within minimum and maximum exposure time limits(varies with camera model), ExposureAuto is set to 'off' and ExposureTime is set to exposure_time param value.
Copy file name to clipboardExpand all lines: launch/acquisition.launch
+3-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,8 @@
5
5
<!-- acquisition spinnaker params-->
6
6
<argname="binning"default="1" doc="Binning for cameras, when changing from 2 to 1 cameras need to be unplugged and replugged"/>
7
7
<argname="color"default="false" doc="Should color images be used (only works on models that support color images)"/>
8
-
<argname="exposure_time"default="0" doc="Exposure setting for cameras"/>
8
+
<argname="exposure_time"default="0" doc="Exposure_time setting for cameras"/>
9
+
<argname="target_grey_value"default="0"doc="AutoExposureTargetGreyValue min: 4 max: 99 if set below 4, AutoExposureTargetGreyValueAuto will be set to continuous(auto) also available as dynamic reconfigurable parameter" />
9
10
<argname="frames"default="3400" doc="Numer of frames to save/view 0=ON"/>
10
11
<argname="live"default="false" doc="Show images on screen GUI"/>
11
12
<argname="live_grid"default="false" doc="Show images on screen GUI in a grid"/>
@@ -37,6 +38,7 @@
37
38
38
39
<!-- Load parameters onto server using argument or default values above -->
Copy file name to clipboardExpand all lines: launch/acquisition_node.launch
+3-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,8 @@
6
6
7
7
<argname="binning"default="1" doc="Binning for cameras, when changing from 2 to 1 cameras need to be unplugged and replugged"/>
8
8
<argname="color"default="false" doc="Should color images be used (only works on models that support color images)"/>
9
-
<argname="exposure_time"default="0" doc="Exposure setting for cameras"/>
9
+
<argname="exposure_time"default="0"doc="Exposure_time setting for cameras"/>
10
+
<argname="target_grey_value"default="0"doc="AutoExposureTargetGreyValue min: 4 max: 99 if set below 4, AutoExposureTargetGreyValueAuto will be set to continuous(auto) also available as dynamic reconfigurable parameter" />
10
11
<argname="frames"default="3400" doc="Numer of frames to save/view 0=ON"/>
11
12
<argname="live"default="false" doc="Show images on screen GUI"/>
12
13
<argname="live_grid"default="false" doc="Show images on screen GUI in a grid"/>
@@ -30,6 +31,7 @@
30
31
31
32
<!-- Load parameters onto server using argument or default values above -->
Copy file name to clipboardExpand all lines: launch/nodelet_subscriber_example.launch
+3-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,8 @@
5
5
<!-- acquisition spinnaker params-->
6
6
<argname="binning"default="1"doc="Binning for cameras, when changing from 2 to 1 cameras need to be unplugged and replugged"/>
7
7
<argname="color"default="false"doc="Should color images be used (only works on models that support color images)"/>
8
-
<argname="exposure_time"default="0"doc="Exposure setting for cameras"/>
8
+
<argname="exposure_time"default="0"doc="Exposure_time setting for cameras"/>
9
+
<argname="target_grey_value"default="0"doc="AutoExposureTargetGreyValue min: 4 max: 99 if set below 4, AutoExposureTargetGreyValueAuto will be set to continuous(auto) also available as dynamic reconfigurable parameter" />
9
10
<argname="frames"default="3400"doc="Numer of frames to save/view 0=ON"/>
10
11
<argname="live"default="false"doc="Show images on screen GUI"/>
11
12
<argname="live_grid"default="false"doc="Show images on screen GUI in a grid"/>
@@ -39,6 +40,7 @@
39
40
40
41
<!-- Load parameters onto server using argument or default values above -->
0 commit comments