Color Creation and Enhancement AW00097603000
114 Basler aviator GigE
To set the Balance Ratio Abs parameter for a color:
Set the Balance Ratio Selector to red, green, or blue.
Set the Balance Ratio Abs parameter to the desired value for the selected color.
You can set the Balance Ratio Selector and the Balance Ratio Abs parameter value from within your
application software by using the Basler pylon API. The following code snippet illustrates using the
API to set the selector and the parameter value:
Camera.BalanceRatioSelector.SetValue( BalanceRatioSelector_Green );
Camera.BalanceRatioAbs.SetValue( 1.20 );
You can also use the Basler pylon Viewer application to easily set the parameters.
For more information about the pylon API and the pylon Viewer, see Section 3 on page 21.
White Balance Reset
The camera includes a White Balance Reset command that can be used to reset the white balance
adjustments. This feature is especially useful, if you have badly misadjusted the white balance and
you want to quickly return to reasonable settings. When the reset command is used, it will return
the camera to the settings defined by your current Light Source Selector parameter setting.
You can execute the White Balance Reset command from within your application software by using
the pylon API. The following code snippet illustrates using the API to execute the command:
// Reset the white balance adjustments
Camera.BalanceWhiteReset.Execute( );
You can also use the Basler pylon Viewer application to easily execute the command.