User`s manual

AW00049313000 Standard Features
Basler runner 171
For example, assume that you have set the Gain Raw All to 450, the Gain Raw Tap 1 to 0, and the
Gain Raw Tap 2 to 0. Then:
Even Pixel Gain = ( 0.0359 x 450) + (0.0359 x 0)
Even Pixel Gain = 16.2 dB
Odd Pixel Gain = ( 0.0359 x 450) + (0.0359 x 0)
Odd Pixel Gain = 16.2 dB
Setting the Gain
To set the Gain Raw All parameter value:
Set the Gain Selector to All.
Set the Gain Raw parameter to your desired value.
To set the Gain Raw Tap 1 parameter value:
Set the Gain Selector to Tap 1.
Set the Gain Raw parameter to your desired value.
To set the Gain Raw Tap 2 parameter value:
Set the Gain Selector to Tap 2.
Set the Gain Raw parameter to your desired value.
You can set the Gain Selector and the Gain Raw parameter values from within your application
software by using the pylon API. The following code snippet illustrates using the API to set the
selector and the parameter value:
// Set Gain Raw All
Camera.GainSelector.SetValue( GainSelector_All );
Camera.GainRaw.SetValue( 100 );
// Set Gain Raw Tap 1
Camera.GainSelector.SetValue( GainSelector_Tap1 );
Camera.GainRaw.SetValue( 0 );
// Set Gain Raw Tap 2
Camera.GainSelector.SetValue( GainSelector_Tap2 );
Camera.GainRaw.SetValue( 0 );
For detailed information about using the pylon API, refer to the Basler pylon Programmer’s Guide
and API Reference.
You can also use the Basler pylon Viewer application to easily set the parameters.
For more information about the pylon Viewer, see Section 3.1 on page 17.